fix(jira): add Toggl button support for sidebar compact layout (#2408) #537
This file contains hidden or 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 }} |