gala/.github/workflows/release.yml

21 lines
544 B
YAML
Raw Permalink Normal View History

2019-12-10 20:35:58 +03:00
name: Release
on:
pull_request:
2024-07-18 20:04:52 +03:00
branches: [main]
types: [closed]
2024-07-18 20:04:52 +03:00
2019-12-10 20:35:58 +03:00
jobs:
release:
2023-01-05 23:29:27 +03:00
runs-on: ubuntu-22.04
2019-12-10 20:35:58 +03:00
if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release')
steps:
- uses: actions/checkout@v4
2019-12-10 20:35:58 +03:00
- uses: elementary/actions/release@master
env:
GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}"
GIT_USER_NAME: "elementaryBot"
GIT_USER_EMAIL: "builds@elementary.io"
with:
2024-08-19 21:14:08 +03:00
release_branch: 'noble'