Add platform self-identification to session_init #112
Workflow file for this run
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 First-Time Contributors | |
| on: | |
| pull_request_target: | |
| types: [opened] | |
| issues: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| welcome: | |
| if: >- | |
| github.actor != 'dependabot[bot]' | |
| && github.actor != 'renovate[bot]' | |
| && github.actor != 'gemini-code-assist[bot]' | |
| && !endsWith(github.actor, '[bot]') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/first-interaction@v3 | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| issue_message: > | |
| Thanks for opening your first issue! We will take a look soon. | |
| If you have not already, check out our | |
| [contributing guide](https://github.com/axiomantic/spellbook/blob/main/CONTRIBUTING.md) | |
| and [documentation](https://axiomantic.github.io/spellbook/latest/). | |
| pr_message: > | |
| Thanks for your first pull request! A maintainer will review it | |
| soon. While you wait, make sure the CI checks pass. If you have | |
| questions, check our | |
| [contributing guide](https://github.com/axiomantic/spellbook/blob/main/CONTRIBUTING.md). |