-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Add workflow to create Advent of Code puzzle issues
CI: - Add a workflow to create issues for Advent of Code puzzles, including instructions for solution and test file placement, and a comment requesting automated analysis from Sourcery. Resolves #3
- Loading branch information
1 parent
a5f742b
commit 47e6cb7
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Create Puzzle Issue | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
year: | ||
required: true | ||
type: number | ||
description: "The year of the puzzle" | ||
day: | ||
required: true | ||
type: number | ||
description: "The day of the puzzle" | ||
part: | ||
required: true | ||
type: number | ||
description: "The part of the puzzle (1 or 2)" | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
create-issue: | ||
runs-on: ubuntu-latest | ||
env: | ||
GH_TOKEN: ${{ secrets.USER_TOKEN }} | ||
steps: | ||
- name: Create puzzle issue | ||
id: create-issue | ||
run: | | ||
ISSUE_URL=$(gh issue create \ | ||
--title "Advent of code - ${{ inputs.year }} day ${{ inputs.day }} part ${{ inputs.part }}" \ | ||
--body "Write solution in \`puzzles/year_${{ inputs.year }}/day_${{ inputs.day }}/solution.py\`, and write tests in \`puzzles/year_${{ inputs.year }}/day_${{ inputs.day }}/test_solution.py\` using relative imports") | ||
echo "issue_url=${ISSUE_URL}" >> $GITHUB_OUTPUT | ||
- name: Add sourcery comment | ||
run: | | ||
gh issue comment "${ISSUE_URL}" --body "@sourcery-ai develop - you can read the puzzle statement with \`uv run advent_of_code.py read ${{ inputs.year }} ${{ inputs.day }} ${{ inputs.part }}\`. Run the solution on \`puzzles/year_${{ inputs.year }}/day_${{ inputs.day }}/input.txt\` and write answer to \`puzzles/year_${{ inputs.year }}/day_${{ inputs.day }}/answer_part${{ inputs.part }}.txt\`" | ||
env: | ||
ISSUE_URL: ${{ steps.create-issue.outputs.issue_url }} |