test-token #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |