From aad0ce57d5fe9f7a92790dc03338b4b8fad01d28 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Sat, 22 Jun 2024 11:50:40 +0200 Subject: [PATCH] Move to Gitea --- {.github => .gitea}/sudo-bot-template.js | 0 {.github => .gitea}/workflows/build-lists.yml | 0 {.github => .gitea}/workflows/lock.yml | 0 {.github => .gitea}/workflows/merge.yml | 0 .gitea/workflows/test.yml | 19 +++++++++++++++++++ 5 files changed, 19 insertions(+) rename {.github => .gitea}/sudo-bot-template.js (100%) rename {.github => .gitea}/workflows/build-lists.yml (100%) rename {.github => .gitea}/workflows/lock.yml (100%) rename {.github => .gitea}/workflows/merge.yml (100%) create mode 100644 .gitea/workflows/test.yml diff --git a/.github/sudo-bot-template.js b/.gitea/sudo-bot-template.js similarity index 100% rename from .github/sudo-bot-template.js rename to .gitea/sudo-bot-template.js diff --git a/.github/workflows/build-lists.yml b/.gitea/workflows/build-lists.yml similarity index 100% rename from .github/workflows/build-lists.yml rename to .gitea/workflows/build-lists.yml diff --git a/.github/workflows/lock.yml b/.gitea/workflows/lock.yml similarity index 100% rename from .github/workflows/lock.yml rename to .gitea/workflows/lock.yml diff --git a/.github/workflows/merge.yml b/.gitea/workflows/merge.yml similarity index 100% rename from .github/workflows/merge.yml rename to .gitea/workflows/merge.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..c537cc6 --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,19 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] + +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 }}."