Cleaning + code owners #1175
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: Deploy to Netlify | |
on: | |
issues: | |
types: [opened, deleted, closed, reopened, labeled, unlabeled, milestoned, demilestoned] | |
issue_comment: | |
types: [created, edited, deleted] | |
milestone: | |
types: [created, edited, deleted] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger asyncapi-shape-up site deploy on Netlify | |
run: | | |
curl -X POST "https://api.netlify.com/api/v1/sites/asyncapi-shape-up/builds" -H "Authorization: Bearer $NETLIFY_AUTH_TOKEN" -i -f | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
- name: Trigger asyncapi-website site deploy on Netlify (Roadmap update) | |
run: | | |
curl -X POST "https://api.netlify.com/api/v1/sites/asyncapi-website/builds" -H "Authorization: Bearer $NETLIFY_AUTH_TOKEN" -i -f | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} |