ci: ワークフローが更新されたときにもワークフローが起動するようにする (#14207)
* ci: include themselves in `on.push.paths`
command: find .github/workflows -type f \( -name '*.yaml' -or -name '*.yml' \) | xargs -I {} yq_4.44.2-linux_x86-64 'select(.on.push.paths != null) | .[0] | map("{}")[0]' {} | xargs -I {} ~/.local/bin/yq_4.44.2-linux_x86-64 -i '.on.push.paths += ["{}"]' {}
* ci: include themselves in `on.pull_request.paths`
command: find .github/workflows -type f \( -name '*.yaml' -or -name '*.yml' \) | xargs -I {} yq_4.44.2-linux_x86-64 'select(.on.pull_request.paths != null) | .[0] | map("{}")[0]' {} | xargs -I {} ~/.local/bin/yq_4.44.2-linux_x86-64 -i '.on.pull_request.paths += ["{}"]' {}
			
			
This commit is contained in:
		@@ -6,12 +6,13 @@ on:
 | 
			
		||||
    paths:
 | 
			
		||||
      - packages/misskey-js/package.json
 | 
			
		||||
      - package.json
 | 
			
		||||
      - .github/workflows/check-misskey-js-version.yml
 | 
			
		||||
  pull_request:
 | 
			
		||||
    branches: [ develop ]
 | 
			
		||||
    paths:
 | 
			
		||||
      - packages/misskey-js/package.json
 | 
			
		||||
      - package.json
 | 
			
		||||
 | 
			
		||||
      - .github/workflows/check-misskey-js-version.yml
 | 
			
		||||
jobs:
 | 
			
		||||
  check-version:
 | 
			
		||||
    # ルートの package.json と packages/misskey-js/package.json のバージョンが一致しているかを確認する
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user