Welcome to mirror list, hosted at ThFree Co, Russian Federation.

draft-release.yml « workflows « .github - github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21c26d5c775b0723cc4cd6872db0cc447ef64815 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Release Drafter
# Run action on push in mater branch
on:
  push:
    branches:
    - master

jobs:
  update_release_draft:
    runs-on: ubuntu-latest
    steps:
    # Create/Update release draft
    - uses: release-drafter/release-drafter@v5.15.0
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}