fix(notion): Fix Notion's page title grabbing when opened in "side pe… #274
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: origins | |
on: [push] | |
jobs: | |
update-origins: | |
runs-on: ubicloud | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: '12' | |
- run: node .github/workflows/update-origins.js | |
- uses: EndBug/add-and-commit@v5 | |
with: | |
add: "src/origins.js" | |
message: 'Update origins.js' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |