[FLORA-414] Store archive hashes #757
Workflow file for this run
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: Make sure PR has FLORA or NO-ISSUE issue in title or has one commit with FLORA/NO-ISSUE issue | |
on: | |
pull_request: | |
types: | |
- synchronize | |
- edited | |
jobs: | |
make-sure-titles-contain-flora-issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: "actions/checkout@v4" | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Make sure there is one proper commit or PR title | |
env: | |
PULL_REQUEST_TITLE: "${{ github.event.pull_request.title }}" | |
GITHUB_TOKEN: "${{ github.token }}" | |
PULL_REQUEST_COMMITS_URL: "${{ github.event.pull_request.commits_url }}" | |
PULL_REQUEST_AUTHOR: "${{ github.event.pull_request.user.login }}" | |
run: | | |
./.github/workflows/check-ticket-in-prs.sh |