Let the link checker only open an new issues when all previous issues are closed #1564
Workflow file for this run
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: publish packages | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
publish: | |
strategy: | |
matrix: | |
package: [core, cli, plugin-tutorial] | |
include: | |
- package: core | |
path: 'package.json' | |
workspace: '@iota-wiki/core' | |
- package: cli | |
path: 'cli/package.json' | |
workspace: '@iota-wiki/cli' | |
- package: plugin-tutorial | |
path: 'plugins/tutorial/package.json' | |
workspace: '@iota-wiki/plugin-tutorial' | |
uses: ./.github/workflows/publish.reusable.yaml | |
with: | |
path: ${{ matrix.path }} | |
workspace: ${{ matrix.workspace }} |