Update README.md #208
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: rubric | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: {} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
# Engine and version to use, see the syntax in the README. Reads from .ruby-version if unset. | |
ruby-version: 2.6.5 | |
- name: Run rubric | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: bin/rubrics | |
- name: Commit files | |
run: | | |
if [ ! -z "$(git status --porcelain)" ]; then | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add --all . | |
git commit -m "Update rubrics" | |
fi | |
- name: Push changes | |
uses: ad-m/github-push-action@fe38f0a751bf9149f0270cc1fe20bf9156854365 | |
env: | |
GITHUB_ACTOR: "jules2689" | |
with: | |
github_token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
branch: ${{ github.ref }} | |