Autoformat code - push results #13
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: Autoformat code - push results | |
on: | |
workflow_run: | |
workflows: ["Autoformat code"] | |
types: | |
- completed | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
push-and-notify: | |
name: Push autoformatted code and notify user | |
runs-on: ubuntu-latest | |
if: > | |
github.event.workflow_run.event == 'pull_request' && | |
github.event.workflow_run.conclusion == 'success' | |
steps: | |
- name: 'Push autoformatted patch' | |
uses: rolfbjarne/[email protected] | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} |