You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflow will check if no files in `.github/workflows/` contains a line that start with `uses: shiipou/github-actions` and end with the branch from the PR.
11
+
# If it does, it will mark a required check as failed and print all the files that contains the line.
12
+
# It must ignore files in the list of ignored files.
13
+
check:
14
+
runs-on: ubuntu-latest
15
+
steps:
16
+
- uses: actions/checkout@v2
17
+
- name: Check
18
+
run: |
19
+
branch=$(echo "${{ github.ref_name }}" | sed -e 's/refs\/heads\///g')
0 commit comments