further test #1
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: Complete Obsidian Linear Release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: "Obsidian release version to complete in Linear, for example 0.1.0." | |
| required: true | |
| type: string | |
| push: | |
| branches: | |
| - eng-1767-setup-linear-release-for-obsidian | |
| jobs: | |
| complete-release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Complete Linear release | |
| uses: linear/linear-release-action@v0 | |
| with: | |
| access_key: ${{ secrets.LINEAR_RELEASES_ACCESS_KEY_OBSIDIAN }} | |
| command: complete | |
| version: ${{ inputs.version }} |