libc: add a strcat implementation #2
Workflow file for this run
This file contains hidden or 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: Check that the PR is targetting trunk | |
on: [ pull_request ] | |
jobs: | |
pr_branch_check: | |
name: Check that the PR is targetting trunk | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check that the PR is targetting trunk | |
if: ${{ github.base_ref != 'trunk' }} | |
run: | | |
set -e | |
echo "The PR is not targetting the trunk branch, please fix that." | |
false |