-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: yarnをpnpmに置き換える (#DTB-1986) (#23)
- Loading branch information
Showing
5 changed files
with
4,217 additions
and
3,497 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Lint & Link PR with Notion | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- edited | ||
- reopened | ||
- synchronize | ||
concurrency: # NOTE: 複数のPRでWorkflowが同時に実行されないように設定する必要がある | ||
group: ${{ github.workflow }} | ||
cancel-in-progress: false | ||
env: | ||
TZ: "Asia/Tokyo" | ||
|
||
jobs: | ||
lint-pr-with-notion: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
steps: | ||
- name: Lint PR Title | ||
id: lint-pr-title | ||
uses: amannn/action-semantic-pull-request@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
types: | | ||
feat | ||
fix | ||
refactor | ||
chore | ||
ci | ||
perf | ||
docs | ||
style | ||
test | ||
revert | ||
subjectPattern: .+\s\(#\w+-\d+\)\s?$ # check if linked with Notion Task |
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
Oops, something went wrong.