You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
534 B

9 months ago
9 months ago
  1. # SPDX-FileCopyrightText: 2023 Melissa LeBlanc-Williams, written for Adafruit Industries
  2. #
  3. # SPDX-License-Identifier: MIT
  4. name: Release Drafter
  5. on:
  6. push:
  7. branches:
  8. - main
  9. permissions:
  10. contents: read
  11. jobs:
  12. update_release_draft:
  13. permissions:
  14. # write permission is required to create a github release
  15. contents: write
  16. pull-requests: read
  17. runs-on: ubuntu-latest
  18. steps:
  19. - uses: release-drafter/release-drafter@v5
  20. env:
  21. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}