add spell check #12
This file contains 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: Release Drafter | ||
on: | ||
push: | ||
# branches to consider in the event; optional, defaults to all | ||
branches: | ||
- develop | ||
jobs: | ||
update_release_draft: | ||
uses: nolte/gh-plumbing/.github/workflows/[email protected] | ||
Check failure on line 12 in .github/workflows/release-drafter.yml GitHub Actions / .github/workflows/release-drafter.ymlInvalid workflow file
|
||
permissions: | ||
# write permission is required to create a github release | ||
contents: write | ||
# write permission is required for autolabeler | ||
# otherwise, read permission is required at least | ||
pull-requests: write | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} |