Skip to content

Commit 7f8a9e5

Browse files
authored
chore: fix illegal identifier in workflow (#19965)
Fixing this error: ``` The workflow is not valid. .github/workflows/close-stale-prs.yml (Line: 6, Col: 3): The identifier 'rix0rrr/close-stale-prs' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters. ``` ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent ca3920d commit 7f8a9e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/close-stale-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
# Cron format: min hr day month dow
44
- cron: "0 0 * * *"
55
jobs:
6-
rix0rrr/close-stale-prs:
6+
close-stale-prs:
77
permissions:
88
pull-requests: write
99
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)