| 123456789101112131415161718192021222324 |
- # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- # Exceptions. See /LICENSE for license information.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- name: Discord Wiki Change Notifications
- on: gollum
- # Minimum permissions.
- permissions:
- contents: read
- jobs:
- notify:
- runs-on: ubuntu-latest
- steps:
- - name: Harden Runner
- uses: step-security/harden-runner@58077d3c7e43986b6b15fba718e8ea69e387dfcc # v2.15.1
- with:
- egress-policy: audit
- - uses: oznu/gh-wiki-edit-discord-notification@1f5b688c27310fba606368b20469c81f5ffd9a2f # v1.0.0
- with:
- discord-webhook-url: ${{ secrets.DISCORD_WEBHOOK_WIKI_EDIT }}
|