github.com/CiscoM31/godata@v1.0.10/.github/workflows/release-drafter.yml (about) 1 2 name: Release Drafter 3 4 on: 5 push: 6 # branches to consider in the event; optional, defaults to all 7 branches: [ master, master-intersight ] 8 # pull_request event is required only for autolabeler 9 pull_request: 10 # Only following types are handled by the action, but one can default to all as well 11 types: [opened, reopened, synchronize] 12 13 jobs: 14 update_release_draft: 15 runs-on: ubuntu-latest 16 steps: 17 - name: Release Drafter 18 # You may pin to the exact commit or the version. 19 # uses: release-drafter/release-drafter@fe52e97d262833ae07d05efaf1a239df3f1b5cd4 20 uses: release-drafter/release-drafter@v5.15.0 21 with: 22 # If your workflow requires multiple release-drafter configs it be helpful to override the config-name. 23 # The config should still be located inside `.github` as that's where we are looking for config files. 24 25 config-name: release-drafter.yml 26 # The name that will be used in the GitHub release that's created or updated. 27 # This will override any `name-template` specified in your `release-drafter.yml` if defined. 28 29 #name: # optional 30 # The tag name to be associated with the GitHub release that's created or updated. 31 # This will override any `tag-template` specified in your `release-drafter.yml` if defined. 32 33 #tag: # optional 34 # The version to be associated with the GitHub release that's created or updated. 35 # This will override any version calculated by the release-drafter. 36 37 #version: # optional 38 # A boolean indicating whether the release being created or updated should be immediately published. 39 40 #publish: # optional, default is 41 # A boolean indicating whether the release being created or updated is a prerelease. 42 43 #prerelease: # optional, default is 44 # The object that the release should be created to point to. 45 46 #commitish: # optional, default is 47 # A boolean indicating whether the releaser mode is disabled. 48 49 #disable-releaser: # optional, default is 50 # A boolean indicating whether the autolabeler mode is disabled. 51 52 #disable-autolabeler: # optional, default is