Restore reporting_cycle_taxonomid_id config #10
This file contains hidden or 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: Formatting | |
| on: | |
| push: | |
| branches-ignore: [main] | |
| workflow_dispatch: | |
| env: | |
| GIT_COMMITTER_NAME: GitHub Actions | |
| GIT_COMMITTER_EMAIL: [email protected] | |
| jobs: | |
| standardrb: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - run: bundle exec standardrb --fix && git diff --quiet | |
| - if: failure() | |
| run: git commit -a --fixup=HEAD --author=. && git push |