[jtag,dv] Keep TCK running a short time after a transaction #12946
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
# Copyright lowRISC contributors (OpenTitan project). | |
# Licensed under the Apache License, Version 2.0, see LICENSE for details. | |
# SPDX-License-Identifier: Apache-2.0 | |
name: 'Check for and block unauthorized changes' | |
on: | |
pull_request_target: | |
permissions: | |
contents: read | |
# Needed to read comments for authorizations | |
pull-requests: read | |
jobs: | |
check-changes: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Determine changed files | |
run: | | |
pr_url="https://github.com/${{ github.repository }}/pull/${{ github.event.number }}" | |
echo $pr_url | |
gh pr diff $pr_url --name-only > $HOME/changed_files | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Show files changed | |
run: cat $HOME/changed_files | |
- name: Check for blocked changes | |
run: | | |
./ci/scripts/check-pr-changes-allowed.py $HOME/changed_files \ | |
--gh-repo ${{ github.repository }} \ | |
--gh-token ${{ secrets.GITHUB_TOKEN }} \ | |
--pr-number ${{ github.event.number }} |