Let the link checker only open an new issues when all previous issues… #353
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: tag packages | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
tag: | |
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/tag.reusable.yaml | |
with: | |
path: ${{ matrix.path }} | |
workspace: ${{ matrix.workspace }} |