permissions:
# Git push permissions are needed
contents: write
+ pull-requests: write
on:
push:
run: ./update.sh
- name: Commit files
run: |
+ BRANCH="changes-from-update.sh-$(date +'%Y-%m-%d')"
+ git show-ref --quiet "$BRANCH" && { "ERROR: Branch $BRANCH already exists"; exit 1; }
+ git switch -C "$BRANCH"
git config --local user.email "workflow@github.com"
git config --local user.name "GitHub Workflow"
- git switch -C changes-from-update.sh
git add -A
git commit -m "Update roundcube version (via update.sh)" || echo "Nothing to update"
- git push --set-upstream origin changes-from-update.sh
+ git push --set-upstream origin "$BRANCH"
- name: Create Pull Request
- run: gh pr create -B master -H changes-from-update.sh --title 'Changes from update.sh' --assignee pabzm
+ run: gh pr create -B master -H changes-from-update.sh --title 'Changes from update.sh' --body "These are the changes of the automated run of ./update.sh" --assignee pabzm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}