This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
fix: Modify the receiver of the generated code from a pointer receiver to a value receiver #13
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
name: task-list-checker | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- ready_for_review | |
- reopened | |
- synchronize | |
jobs: | |
check: | |
name: Check task list | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
permissions: | |
id-token: write | |
contents: read | |
pull-requests: read | |
statuses: write | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Check for incomplete task list items | |
uses: Shopify/task-list-checker@7cab3e5a969a34f8c553974bc6f8940d8c3978de # ref. https://github.com/Shopify/task-list-checker | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |