Skip to content

Commit fd773a4

Browse files
authored
ci: lint and test only manual triggered. (#270)
This pull request makes a small update to the GitHub Actions workflow configuration. The change removes the pull request trigger and a conditional check for specific labels in the `lint-and-test.yml` workflow. This means the workflow will no longer run automatically on pull requests or skip runs based on labels, and will only be triggered manually. - Removed the `pull_request` trigger from `.github/workflows/lint-and-test.yml`, so the workflow is now only triggered by `workflow_dispatch` (manual runs). - Removed the conditional label checks from the `changes` job, so it no longer skips execution based on the presence of certain labels (`prepare-release`, `refresh-locks`, `chart-bump`).
1 parent 0057f9b commit fd773a4

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

.github/workflows/lint-and-test.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: lint-and-test
22

33
on:
4-
pull_request:
5-
branches:
6-
- main
74
workflow_dispatch:
85

96
env:
@@ -12,12 +9,6 @@ env:
129

1310
jobs:
1411
changes:
15-
if: >-
16-
${{
17-
!contains(github.event.pull_request.labels.*.name, 'prepare-release') &&
18-
!contains(github.event.pull_request.labels.*.name, 'refresh-locks') &&
19-
!contains(github.event.pull_request.labels.*.name, 'chart-bump')
20-
}}
2112
name: Detect Changes
2213
runs-on: ubuntu-latest
2314
outputs:

0 commit comments

Comments
 (0)