EventBridge Scheduler L2 Construct #1358
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
name: Render RFC Table | |
on: | |
issues: | |
types: [opened,edited,deleted,transferred,assigned,unassigned,labeled,unlabeled] | |
workflow_dispatch: {} | |
jobs: | |
render: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
- name: install dependencies | |
run: | | |
cd tools/rfc-render | |
npm install | |
- name: render table | |
run: | | |
node tools/rfc-render/inject-table.js README.md | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: Update RFC table in README | |
title: Update RFC table in README | |
branch: auto/update-rfc-table |