mirror of
https://github.com/linuxserver/docker-audacity.git
synced 2025-07-22 15:21:49 +02:00
19 lines
662 B
YAML
19 lines
662 B
YAML
name: Greetings
|
|
|
|
on: [pull_request_target, issues]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
greeting:
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/first-interaction@v1
|
|
with:
|
|
issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
|
|
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-audacity/blob/main/.github/PULL_REQUEST_TEMPLATE.md)!'
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|