From 92e766d4b05a69e1d986108a8b48a98ece9ab5e9 Mon Sep 17 00:00:00 2001 From: Elisei Roca Date: Fri, 20 Dec 2024 22:37:32 +0100 Subject: [PATCH] Add .gitea/workflows/test.yaml --- .gitea/workflows/test.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..3939a18 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,29 @@ +on: [push] + +jobs: + test-on-protected-branch: + runs-on: ubuntu-latest + permissions: + # Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository. + contents: write + steps: + - name: Fix dns + run: echo 'nameserver 1.1.1.1' > /etc/resolv.conf + - uses: actions/checkout@v4 + with: + token: ${{ secrets.ACTION_TOKEN }} + - name: Add a line to README.md + run: | + echo -e "$(date) - commited via Gitea Actions\n" >> README.md + - name: Get last commit message + id: last-commit + run: | + echo "author=$(git log -1 --pretty=\"%an <%ae>\")" >> $GITHUB_OUTPUT + - name: Commit changes back + uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 + with: + commit_user_name: eliroca + commit_author: ${{ steps.last-commit.outputs.author }} + commit_message: "[skip actions] Gitea Actions run" + commit_options: '--no-edit' + skip_fetch: true