Resyntax Autofixer #86
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: Resyntax Autofixer | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
autofix: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Install Racket | |
uses: Bogdanp/[email protected] | |
with: | |
version: current | |
dest: '"${HOME}/racketdist-current-CS"' | |
sudo: never | |
- name: Install Rebellion | |
run: raco pkg install --auto --link --name rebellion | |
- name: Create a Resyntax pull request | |
uses: jackfirth/[email protected] | |
with: | |
private-key: ${{ secrets.RESYNTAX_APP_PRIVATE_KEY }} | |
max-pass-count: 1 | |
max-modified-files: 10 |