fix(dashboard): onboarding and invite accept flow for connect (#11353) #311
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: Linear Release - Community Edition | |
| # Scheduled Linear pipeline for the Community / OSS self-hosted release stream. | |
| # - Push to `next`: incrementally syncs commits/issues to the in-progress release. | |
| # - Tag push (`v*.*.*`): handled inside `prepare-self-hosted-release.yml`, which | |
| # syncs and completes the Linear release using the tag version after Docker | |
| # images are built and pushed. | |
| on: | |
| push: | |
| branches: | |
| - next | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: linear-release-community-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| sync: | |
| name: Sync to Linear (Community) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Sync release to Linear | |
| uses: linear/linear-release-action@0353b5fa8c00326913966f00557d68f8f30b8b6b # pinned v0 ref | |
| with: | |
| access_key: ${{ secrets.LINEAR_ACCESS_KEY_COMMUNITY }} |