Migrate CodeQL to advanced setup for faster CI #18
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: Welcome | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request_target: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| welcome: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/first-interaction@v3 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-message: | | |
| Thanks for opening your first issue! We'll take a look soon. | |
| In the meantime, search [Discussions](https://github.com/opendecree/decree/discussions) for related topics. | |
| pr-message: | | |
| Thanks for your first pull request! We appreciate the contribution. | |
| Before review, please make sure tests pass: `cd sdk && pytest` |