trigger #33
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 | |
on: | |
push: | |
branches: main | |
paths: trigger | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
echo "something" >> README.md | |
git config user.name "$(git --no-pager log --format=format:'%an' -n 1)" | |
git config user.email "$(git --no-pager log --format=format:'%ae' -n 1)" | |
git checkout -b switch-docs-version-back | |
git add README.md | |
git commit -m "Switch docs version back" | |
git push origin switch-docs-version-back | |
PULL_REQUEST_URI=$(gh pr create --title "Switch docs version back" --body "" --head main --base main) | |
gh pr merge $PULL_REQUEST_URI --merge | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |