From 2b66a017f65a4776fc1e577efbd27cb3f600f34e Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 22 Sep 2023 18:35:18 -0400 Subject: [PATCH] misc(repo): changed some stuff over to using forgejo actions --- .../ISSUE_TEMPLATE/bot-bug-report.md | 0 .../ISSUE_TEMPLATE/bot-suggestion.md | 0 .../ISSUE_TEMPLATE/cog-bug-report.md | 0 .../ISSUE_TEMPLATE/cog-suggestion.md | 0 .../workflows/forgejo-actions-test.yaml | 16 ++++++++-------- 5 files changed, 8 insertions(+), 8 deletions(-) rename {.gitea => .forgejo}/ISSUE_TEMPLATE/bot-bug-report.md (100%) rename {.gitea => .forgejo}/ISSUE_TEMPLATE/bot-suggestion.md (100%) rename {.gitea => .forgejo}/ISSUE_TEMPLATE/cog-bug-report.md (100%) rename {.gitea => .forgejo}/ISSUE_TEMPLATE/cog-suggestion.md (100%) rename .gitea/workflows/gitea-actions-test.yaml => .forgejo/workflows/forgejo-actions-test.yaml (52%) diff --git a/.gitea/ISSUE_TEMPLATE/bot-bug-report.md b/.forgejo/ISSUE_TEMPLATE/bot-bug-report.md similarity index 100% rename from .gitea/ISSUE_TEMPLATE/bot-bug-report.md rename to .forgejo/ISSUE_TEMPLATE/bot-bug-report.md diff --git a/.gitea/ISSUE_TEMPLATE/bot-suggestion.md b/.forgejo/ISSUE_TEMPLATE/bot-suggestion.md similarity index 100% rename from .gitea/ISSUE_TEMPLATE/bot-suggestion.md rename to .forgejo/ISSUE_TEMPLATE/bot-suggestion.md diff --git a/.gitea/ISSUE_TEMPLATE/cog-bug-report.md b/.forgejo/ISSUE_TEMPLATE/cog-bug-report.md similarity index 100% rename from .gitea/ISSUE_TEMPLATE/cog-bug-report.md rename to .forgejo/ISSUE_TEMPLATE/cog-bug-report.md diff --git a/.gitea/ISSUE_TEMPLATE/cog-suggestion.md b/.forgejo/ISSUE_TEMPLATE/cog-suggestion.md similarity index 100% rename from .gitea/ISSUE_TEMPLATE/cog-suggestion.md rename to .forgejo/ISSUE_TEMPLATE/cog-suggestion.md diff --git a/.gitea/workflows/gitea-actions-test.yaml b/.forgejo/workflows/forgejo-actions-test.yaml similarity index 52% rename from .gitea/workflows/gitea-actions-test.yaml rename to .forgejo/workflows/forgejo-actions-test.yaml index 153413e..bca772d 100644 --- a/.gitea/workflows/gitea-actions-test.yaml +++ b/.forgejo/workflows/forgejo-actions-test.yaml @@ -1,19 +1,19 @@ -ο»Ώname: Gitea Actions Demo -run-name: ${{ gitea.actor }} is testing out Gitea Actions πŸš€ +ο»Ώname: Forgejo Actions Demo +run-name: ${{ forgejo.actor }} is testing out Gitea Actions πŸš€ on: [push] jobs: - Explore-Gitea-Actions: - runs-on: ubuntu-latest + Explore-Forgejo-Actions: + runs-on: docker steps: - - run: echo "πŸŽ‰ The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "πŸŽ‰ The job was automatically triggered by a ${{ forgejo.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 }}." + - run: echo "πŸ”Ž The name of your branch is ${{ forgejo.ref }} and your repository is ${{ forgejo.repository }}." - name: Check out repository code uses: actions/checkout@v3 - - run: echo "πŸ’‘ The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "πŸ’‘ The ${{ forgejo.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 }} + ls ${{ forgejo.workspace }} - run: echo "🍏 This job's status is ${{ job.status }}."