diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 0000000..95572eb --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,21 @@ +name: Greetings + +on: + pull_request_target: + types: [opened] + issues: + types: [opened] + +permissions: + issues: write + pull-requests: write + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: "Message that will be displayed on users' first issue" + pr-message: "Message that will be displayed on users' first pull request" diff --git a/.github/workflows/sast-scanning.yml b/.github/workflows/sast-scanning.yml index f1c4cab..69d65c6 100644 --- a/.github/workflows/sast-scanning.yml +++ b/.github/workflows/sast-scanning.yml @@ -663,6 +663,8 @@ jobs: contents: read security-events: write actions: read + issues: write + pull-requests: write steps: - name: Download all SAST artifacts