Update record names as reserved words/variables and new record defini… #201
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: action | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
actions: | |
name: markdownlint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: DavidAnson/markdownlint-cli2-action@v14 | |
with: | |
config: 'eep.markdownlint.json' | |
globs: | | |
README.md | |
eeps/*.md | |
- name: Deploy on erlang.org | |
if: github.ref == 'refs/heads/master' | |
env: | |
GITHUB_TOKEN: ${{ secrets.TRIGGER_ERLANG_ORG_BUILD }} | |
run: | | |
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST -H "Accept: application/vnd.github.v3+json" "https://api.github.com/repos/erlang/erlang-org/actions/workflows/update-gh-cache.yaml/dispatches" -d '{"ref":"master"}' |