diff --git a/.github/workflows/test-token.yml b/.github/workflows/test-token.yml new file mode 100644 index 00000000..af1e864a --- /dev/null +++ b/.github/workflows/test-token.yml @@ -0,0 +1,46 @@ +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-regular-token: + 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 push + test-push-pat: + 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