From 7de0196a1839c9ebcd04ae1015a9efb27972e0c6 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Tue, 25 Mar 2025 10:12:34 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20chore:=20Remove=20deprecated=20G?= =?UTF-8?q?itea=20action=20workflows=20for=20testing=20and=20version=20tag?= =?UTF-8?q?ging?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/action-test.yaml | 19 ------------------- .gitea/workflows/version-tag.yaml | 27 --------------------------- 2 files changed, 46 deletions(-) delete mode 100644 .gitea/workflows/action-test.yaml delete mode 100644 .gitea/workflows/version-tag.yaml diff --git a/.gitea/workflows/action-test.yaml b/.gitea/workflows/action-test.yaml deleted file mode 100644 index a28e574..0000000 --- a/.gitea/workflows/action-test.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: Gitea Actions Demo -run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 -on: workflow_dispatch - -jobs: - Explore-Gitea-Actions: - runs-on: ubuntu-latest - steps: - - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - - name: Check out repository code - uses: actions/checkout@v4 - - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ gitea.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." diff --git a/.gitea/workflows/version-tag.yaml b/.gitea/workflows/version-tag.yaml deleted file mode 100644 index 03246a0..0000000 --- a/.gitea/workflows/version-tag.yaml +++ /dev/null @@ -1,27 +0,0 @@ -name: Gitea Actions Demo -run-name: Use TrunkVer as repo tag -# on: [push] -on: [workflow_dispatch] - -jobs: - create-tag: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Generate TrunkVer - id: trunkver - uses: https://github.com/crftd-tech/trunkver@main - - - name: Create tag - env: - TRUNKVER: ${{ steps.trunkver.outputs.trunkver }} - uses: https://github.com/rickstaa/action-create-tag@v1 - id: "tag_create" - with: - tag: "$TRUNKVER" - tag_exists_error: false - message: "Latest pushed commit"