Help Gerald handle files that it can't read. #207
Workflow file for this run
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
# AUTOGENERATED by workflow-preprocessor.js from ../.github/workflow-templates/pr-autofix.yml | |
name: Autofixers | |
'on': | |
- pull_request | |
jobs: | |
autofix: | |
runs-on: ubuntu-latest | |
if: github.actor != 'khan-actions-bot' | |
steps: | |
- uses: actions/checkout@v1 | |
name: '▶️ Setup checkout: get the repo' | |
- id: paths__github_workflow_templates_ | |
name: 'Check paths: .github/workflow-templates/**' | |
run: >- | |
BASE=${GITHUB_BASE_REF:-HEAD~1} | |
if [[ -n $(git diff --name-only refs/remotes/origin/$BASE --relative | | |
grep '^\.github/workflow-templates/.*$') ]] | |
then | |
echo "::set-output name=changed::true" | |
exit 0 | |
fi | |
echo "::set-output name=changed::false" | |
exit 0 | |
- id: paths_src_ | |
name: 'Check paths: src/**' | |
run: >- | |
BASE=${GITHUB_BASE_REF:-HEAD~1} | |
if [[ -n $(git diff --name-only refs/remotes/origin/$BASE --relative | | |
grep '^src/.*$') ]] | |
then | |
echo "::set-output name=changed::true" | |
exit 0 | |
fi | |
echo "::set-output name=changed::false" | |
exit 0 | |
- run: yarn | |
name: '▶️ Setup yarn: ' | |
- name: Rebuild github actions workflow | |
run: yarn make-workflows | |
if: steps.paths__github_workflow_templates_.outputs.changed == 'true' | |
- name: Run prettier | |
run: >- | |
node ./node_modules/actions-utils/list-changed-files.js | grep | |
'.*\.js$' | xargs npm run -s format-files | |
- name: Rebuild our "dist" file | |
run: yarn build | |
if: steps.paths_src_.outputs.changed == 'true' | |
- uses: Khan/autofix-commit-action@master | |
env: | |
GITHUB_TOKEN: '${{ secrets.KHAN_ACTIONS_BOT_TOKEN }}' |