Skip to content

Commit

Permalink
🤖 [GitHub] Revise actions and workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
beefchimi committed Oct 17, 2023
1 parent ab2eae2 commit d59abec
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 23 deletions.
36 changes: 17 additions & 19 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
🧰 Dependency:
- any: ['package-lock.json', 'yarn.lock']
🧰 Dependency: package-lock.json
📚 Documentation:
- any: ['README.md', 'docs/**']
🔖 Release: 'CHANGELOG.md'
- 'README.md'
- 'docs/**'
⚖️ Legal: 'LICENSE'
🔖 Release: 'CHANGELOG.md'
🧪 Testing: '**/*.test.ts'
🔧 Tooling:
- any:
[
'*',
'.github/**',
'.vscode/**',
'.yarn*',
'.yarn/**',
'config/**',
'scripts/**',
'!LICENSE',
'!package.lock',
'!yarn.lock',
'!*.md',
]
🛠️ Tooling:
- .github/**
- .vscode/**
- .editorconfig
- .eslintignore
- .eslintrc.cjs
- .gitignore
- .nvmrc
- .prettierrc
- 'config/**',
- package.json
- tsconfig.json
- vite.config.ts
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Apply PR labels
uses: actions/labeler@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node 18.x to install with private scope
uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node 18.x to install with private scope
uses: actions/setup-node@v3
Expand Down

0 comments on commit d59abec

Please sign in to comment.