5d0e2efaf3
* Add zizmor CI & make it happy Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix additional zizmor warning Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
17 lines
570 B
YAML
17 lines
570 B
YAML
# Generates the draft release for the js-sdk
|
|
# Normally triggered whenever anything is merged to the staging branch, but
|
|
# also has a workflow dispatch trigger in case it needs running manually due
|
|
# to failures / workflow updates etc.
|
|
name: Release Drafter
|
|
on:
|
|
push:
|
|
branches: [staging]
|
|
workflow_dispatch: {}
|
|
concurrency: ${{ github.workflow }}
|
|
permissions: {}
|
|
jobs:
|
|
draft:
|
|
permissions:
|
|
contents: write
|
|
uses: matrix-org/matrix-js-sdk/.github/workflows/release-drafter-workflow.yml@develop # zizmor: ignore[unpinned-uses]
|