Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/1-step.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,31 +56,31 @@ jobs:
- name: Check for workflow name in welcome.yml
id: check-workflow-name
continue-on-error: true
uses: skills/action-keyphrase-checker@v1
uses: skills/action-keyphrase-checker@v2
with:
text-file: .github/workflows/welcome.yml
keyphrase: "name:"

- name: Check for pull_request event in welcome.yml
id: check-pull-request-event
continue-on-error: true
uses: skills/action-keyphrase-checker@v1
uses: skills/action-keyphrase-checker@v2
with:
text-file: .github/workflows/welcome.yml
keyphrase: "pull_request:"

- name: Check for types filter
id: check-opened-type
continue-on-error: true
uses: skills/action-keyphrase-checker@v1
uses: skills/action-keyphrase-checker@v2
with:
text-file: .github/workflows/welcome.yml
keyphrase: "types:"

- name: Check for permissions in welcome.yml
id: check-permissions
continue-on-error: true
uses: skills/action-keyphrase-checker@v1
uses: skills/action-keyphrase-checker@v2
with:
text-file: .github/workflows/welcome.yml
keyphrase: "pull-requests: write"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/2-step.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,23 +47,23 @@ jobs:
- name: Check for jobs section in welcome.yml
id: check-jobs-section
continue-on-error: true
uses: skills/action-keyphrase-checker@v1
uses: skills/action-keyphrase-checker@v2
with:
text-file: .github/workflows/welcome.yml
keyphrase: "jobs:"

- name: Check for welcome job in welcome.yml
id: check-welcome-job
continue-on-error: true
uses: skills/action-keyphrase-checker@v1
uses: skills/action-keyphrase-checker@v2
with:
text-file: .github/workflows/welcome.yml
keyphrase: "welcome:"

- name: Check for runs-on ubuntu-latest in welcome.yml
id: check-runs-on
continue-on-error: true
uses: skills/action-keyphrase-checker@v1
uses: skills/action-keyphrase-checker@v2
with:
text-file: .github/workflows/welcome.yml
keyphrase: "runs-on: ubuntu-latest"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/3-step.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,31 +58,31 @@ jobs:
- name: Check for steps section in welcome.yml
id: check-steps-section
continue-on-error: true
uses: skills/action-keyphrase-checker@v1
uses: skills/action-keyphrase-checker@v2
with:
text-file: .github/workflows/welcome.yml
keyphrase: "steps:"

- name: Check for gh pr comment command in welcome.yml
id: check-gh-pr-comment
continue-on-error: true
uses: skills/action-keyphrase-checker@v1
uses: skills/action-keyphrase-checker@v2
with:
text-file: .github/workflows/welcome.yml
keyphrase: "gh pr comment"

- name: Check for GITHUB_TOKEN env var in welcome.yml
id: check-github-token
continue-on-error: true
uses: skills/action-keyphrase-checker@v1
uses: skills/action-keyphrase-checker@v2
with:
text-file: .github/workflows/welcome.yml
keyphrase: "GITHUB_TOKEN:"

- name: Check for PR_URL env var in welcome.yml
id: check-pr-url
continue-on-error: true
uses: skills/action-keyphrase-checker@v1
uses: skills/action-keyphrase-checker@v2
with:
text-file: .github/workflows/welcome.yml
keyphrase: "PR_URL:"
Expand Down