diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-05-29 15:12:19 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-05-29 15:12:19 -0700 |
commit | 24109910fe9912078f851419731ad046d851dcfc (patch) | |
tree | b71f9d30980d60509fa69e7e20ab436cec8f8385 /ci/config/allow-ref.sample | |
parent | Git 2.27-rc2 (diff) | |
parent | ci/config: correct instruction for CI preferences (diff) | |
download | tgif-24109910fe9912078f851419731ad046d851dcfc.tar.xz |
Merge branch 'jk/ci-only-on-selected-branches'
Dev support.
* jk/ci-only-on-selected-branches:
ci/config: correct instruction for CI preferences
Diffstat (limited to 'ci/config/allow-ref.sample')
-rwxr-xr-x | ci/config/allow-ref.sample | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ci/config/allow-ref.sample b/ci/config/allow-ref.sample new file mode 100755 index 0000000000..af0e076f8a --- /dev/null +++ b/ci/config/allow-ref.sample @@ -0,0 +1,27 @@ +#!/bin/sh +# +# Sample script for enabling/disabling GitHub Actions CI runs on +# particular refs. By default, CI is run for all branches pushed to +# GitHub. You can override this by dropping the ".sample" from the script, +# editing it, committing, and pushing the result to the "ci-config" branch of +# your repository: +# +# git checkout -b ci-config +# cp allow-ref.sample allow-ref +# $EDITOR allow-ref +# git add allow-ref +# git commit -am "implement my ci preferences" +# git push +# +# This script will then be run when any refs are pushed to that repository. It +# gets the fully qualified refname as the first argument, and should exit with +# success only for refs for which you want to run CI. + +case "$1" in +# allow one-off tests by pushing to "for-ci" or "for-ci/mybranch" +refs/heads/for-ci*) true ;; +# always build your integration branch +refs/heads/my-integration-branch) true ;; +# don't build any other branches or tags +*) false ;; +esac |