We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cf2bb2 commit ae3fddcCopy full SHA for ae3fddc
.github/workflows/tests.yml
@@ -20,6 +20,8 @@ jobs:
20
steps:
21
- name: Checkout repository
22
uses: actions/checkout@v4
23
+ with:
24
+ token: ${{ secrets.BOT_PAT }}
25
- name: Create test branch
26
run: |
27
echo "test $(date)" > test.txt
@@ -28,7 +30,9 @@ jobs:
28
30
git add test.txt
29
31
git commit -m "Test commit for PAT"
32
git branch -M test-pat-branch
- git push --force "https://${{ secrets.BOT_PAT }}@github.com/${{ github.repository }}" HEAD:test-pat-branch
33
+ git push --force -u origin test-pat-branch
34
+ env:
35
+ GITHUB_TOKEN: ${{ secrets.BOT_PAT }}
36
37
- name: Attempt to open PR with PAT
38
0 commit comments