We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 772d083 commit 032b519Copy full SHA for 032b519
.github/workflows/check-resolution.yml
@@ -8,7 +8,7 @@ on:
8
- opened
9
10
jobs:
11
- get-answer:
+ submit-answer:
12
runs-on: ubuntu-latest
13
steps:
14
- name: Checkout
@@ -22,7 +22,7 @@ jobs:
22
- name: Extract year and day from branch name
23
id: extract
24
run: |
25
- branch_name=$(echo "${{ github.event.pull_request.head.ref }}")
+ branch_name=$(echo ${{ github.event.pull_request.head.ref }})
26
27
if [[ $branch_name =~ puzzle/([0-9]{4})-day-([1-9]|1[0-9]|2[0-5]) ]]; then
28
year="${BASH_REMATCH[1]}"
0 commit comments