Add Zowe Conformance and Support Conformance v3 offerings during the pre-sign period. #928
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Set Issue Label on successful build" | |
on: | |
workflow_dispatch: | |
issue_comment: | |
types: [created, edited] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- uses: Amwam/issue-comment-action@04d3936db1a2fc02f86cad9db71cf24006019c4d # v1.3.1 | |
if: ${{ github.event.issue.pull_request && contains(github.event.issue.labels.*.name, 'automated-build') }} | |
with: | |
keywords: '["Deploy preview for *omp-landscape* ready"]' | |
labels: '["automerge"]' | |
github-token: "${{ secrets.PAT }}" |