File: post-process.yml

package info (click to toggle)
python-maggma 0.72.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,388 kB
  • sloc: python: 9,610; makefile: 12
file content (25 lines) | stat: -rw-r--r-- 614 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Post-process

on:
  workflow_run:
    branches:
      - main
    types:
      - completed
    workflows:
      # List all required workflow names here.
      - 'testing'

jobs:

  auto-gen-release:
    runs-on: ubuntu-latest
    env:
      GITHUB_TOKEN: ${{ secrets.SEMVER_BUMP_TOKEN }}
    steps:
      - # It is often a desired behavior to merge only when a workflow execution
        # succeeds. This can be changed as needed.
        if: ${{ github.event.workflow_run.conclusion == 'success' }}
        uses: rymndhng/release-on-push-action@v0.25.0
        with:
          bump_version_scheme: norelease