refactor(token):renamed token for check list according to used naming… #138
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
### | |
# | |
# Creates a PR from the token branch whenever is has commits ahead of main. | |
# | |
### | |
name: Create Token PR | |
on: | |
push: | |
branches: | |
- tokens/* | |
jobs: | |
create_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.SWISSPOSTDEVS_ACCESS_TOKEN }} | |
- name: Configure GitHub User | |
run: | | |
git config user.name "Swiss Post Bot" | |
git config user.email "[email protected]" | |
# Check if a PR branch already exists | |
- name: Get PR Branch | |
id: pr-branch | |
run: | | |
PR_BRANCH="update-tokens" | |
echo "name=${PR_BRANCH}" >> $GITHUB_OUTPUT | |
if [[ -n $(git ls-remote origin "${PR_BRANCH}") ]]; then | |
echo "exists=true" >> $GITHUB_OUTPUT | |
else | |
echo "exists=false" >> $GITHUB_OUTPUT | |
fi | |
# If the PR branch does not exit, create it | |
- name: Create PR Branch | |
if: steps.pr-branch.outputs.exists == 'false' | |
run: | | |
git checkout -b ${{ steps.pr-branch.outputs.name }} ${{ github.ref_name }} | |
git push --set-upstream origin ${{ steps.pr-branch.outputs.name }} | |
# If the PR branch exits, update it with the tokens branch | |
- name: Update PR Branch with Tokens Branch | |
if: steps.pr-branch.outputs.exists == 'true' | |
run: | | |
git checkout ${{ steps.pr-branch.outputs.name }} | |
git merge ${{ github.ref_name }} -X theirs --no-edit | |
# Always update the PR branch with the main branch | |
- name: Update PR Branch with main | |
run: | | |
git merge origin/main -X ours --no-edit | |
git push | |
# Check if a PR already exist | |
- name: Get PR | |
id: pr | |
run: | | |
if [[ -n $(gh pr list --head "${{ steps.pr-branch.outputs.name }}") ]]; then | |
echo "exists=true" >> $GITHUB_OUTPUT | |
else | |
echo "exists=false" >> $GITHUB_OUTPUT | |
fi | |
env: | |
GITHUB_TOKEN: ${{ secrets.SWISSPOSTDEVS_ACCESS_TOKEN }} | |
# If the PR does not exit, create it | |
- name: Create PR | |
if: steps.pr.outputs.exists == 'false' | |
run: | | |
gh pr create --title "chore(tokens): :art: update tokens" --body "Merge this PR to update the tokens in the main branch." --base main | |
env: | |
GITHUB_TOKEN: ${{ secrets.SWISSPOSTDEVS_ACCESS_TOKEN }} |