This repository was archived by the owner on Feb 17, 2026. It is now read-only.
implement DomainHints extraction for C# test files #323
This file contains hidden or 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: Issue Automation | |
| on: | |
| issues: | |
| types: [opened, labeled, closed] | |
| concurrency: | |
| group: issue-${{ github.event.issue.number }} | |
| cancel-in-progress: false | |
| jobs: | |
| automation: | |
| permissions: | |
| issues: write | |
| contents: read | |
| uses: KubrickCode/workflow-toolkit/.github/workflows/issue-automation.yml@main | |
| with: | |
| project-number: "1" | |
| owner-type: "organization" | |
| event-action: ${{ github.event.action }} | |
| issue-number: ${{ github.event.issue.number }} | |
| issue-node-id: ${{ github.event.issue.node_id }} | |
| issue-user-login: ${{ github.event.issue.user.login }} | |
| label-name: ${{ github.event.label.name || '' }} | |
| has-bug-label: ${{ contains(github.event.issue.labels.*.name, 'bug') }} | |
| secrets: | |
| GH_PAT: ${{ secrets.GH_PAT }} |