27 lines
720 B
YAML
27 lines
720 B
YAML
name: Create build check
|
|
on:
|
|
push:
|
|
tags:
|
|
- '15.0**'
|
|
|
|
jobs:
|
|
create-build-check-issue:
|
|
timeout-minutes: 10
|
|
runs-on: ubuntu-24.04
|
|
permissions: write-all
|
|
if: contains('["SlackBuildsOrg/slackbuilds"]', github.repository)
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
show-progress: false
|
|
|
|
- name: Create or update release issue
|
|
id: create-or-update-issue
|
|
uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5.0.1
|
|
with:
|
|
title: '${{ github.ref_name }}: Build check'
|
|
content-filepath: .github/BUILD_CHECK_ISSUE.md
|
|
|
|
|