From 0541e79513c0ecb1ba8a3bc3da451bf3e52380d8 Mon Sep 17 00:00:00 2001 From: Joffrey Bion Date: Sat, 4 Jan 2025 01:35:04 +0100 Subject: [PATCH] Add test workflow for push --- .github/workflows/test-token.yml | 49 ++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/test-token.yml diff --git a/.github/workflows/test-token.yml b/.github/workflows/test-token.yml new file mode 100644 index 00000000..fa0a0dab --- /dev/null +++ b/.github/workflows/test-token.yml @@ -0,0 +1,49 @@ +name: test-token + +on: + workflow_dispatch: + inputs: + changelog-commit-username: + description: 'The git user.name for the change log commit author' + default: 'github-actions[bot]' + required: true + changelog-commit-email: + description: 'The git user.email for the change log commit author' + default: '41898282+github-actions[bot]@users.noreply.github.com' + required: true +jobs: + test-push-pat-checkout: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + token: ${{ secrets.GH_PAT }} + + - name: Commit and push + shell: bash + run: | + git config --global user.name "${{ inputs.changelog-commit-username }}" + git config --global user.email "${{ inputs.changelog-commit-email }}" + + echo test > test.txt + git add test.txt + git commit -m "Test commit" + git push + test-push-pat-url: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Commit and push + shell: bash + run: | + git config --global user.name "${{ inputs.changelog-commit-username }}" + git config --global user.email "${{ inputs.changelog-commit-email }}" + + echo test > test.txt + git add test.txt + git commit -m "Test commit" + + git remote set-url origin https://x-access-token:${{ secrets.GH_PAT }}@github.com/${{ github.repository }}.git + git push origin \ No newline at end of file