Skip to content
Snippets Groups Projects
Commit 5ac9d975 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Update workflow skip condition

parent 5e7943f1
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ jobs:
- name: Bump Distribution Date
run: |
# Inline Bump Script
[[ "$GITHUB_ACTOR" == 'MarlinFirmware' ]] || exit 0
[[ "$GITHUB_REPOSITORY" == "MarlinFirmware/Marlin" ]] || exit 0
DIST=$( date +"%Y-%m-%d" )
eval "sed -E -i 's/(#define +STRING_DISTRIBUTION_DATE) .*$/\1 \"$DIST\"/g' Marlin/src/inc/Version.h" && \
git config user.name "${GITHUB_ACTOR}" && \
......
#
# check-pr.yml
# Automatically close the PR if it's directed to a release branch
# Add a comment to the PR if it's directed to a release branch
#
name: Check PR
......
......@@ -95,7 +95,7 @@ jobs:
- name: Run ${{ matrix.test-platform }} Tests
run: |
# Inline tests script
[[ "$GITHUB_ACTOR" == 'MarlinFirmware' ]] || exit 0
[[ "$GITHUB_REPOSITORY" == "MarlinFirmware/Marlin" ]] || exit 0
chmod +x buildroot/bin/*
chmod +x buildroot/share/tests/*
export PATH=./buildroot/bin/:./buildroot/share/tests/:${PATH}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment