Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorĐoàn Trần Công Danh <congdanhqx@gmail.com>2020-05-18 17:52:34 +0300
committerJunio C Hamano <gitster@pobox.com>2020-05-18 20:18:34 +0300
commit71800d31b5e887d38319c7a3cce834a067d961f5 (patch)
tree450f38b21dc5dd1eee1651402d8a590ce03683ad /ci
parente76eec35540f9eca7baef3d84c164a1f8d4d3cb9 (diff)
ci/config: correct instruction for CI preferences
From e76eec3554 (ci: allow per-branch config for GitHub Actions, 2020-05-07), we started to allow contributors decide which branch they want to build with GitHub Actions by checking for a file named "ci/config/allow-ref". In order to assist those contributors, we provided a sample in "ci/config/allow-refs.sample", and instructed them to drop the ".sample", then commit that file to their repository. We've misspelt the filename in that change. Let's fix the spelling. While we're at it, also instruct our contributors introduce that new file to Git before commit, in case of they've never told Git before. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Đoàn Trần Công Danh <congdanhqx@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ci')
-rwxr-xr-xci/config/allow-ref.sample (renamed from ci/config/allow-refs.sample)5
1 files changed, 3 insertions, 2 deletions
diff --git a/ci/config/allow-refs.sample b/ci/config/allow-ref.sample
index f157f1945a..af0e076f8a 100755
--- a/ci/config/allow-refs.sample
+++ b/ci/config/allow-ref.sample
@@ -7,8 +7,9 @@
# your repository:
#
# git checkout -b ci-config
-# cp allow-refs.sample allow-refs
-# $EDITOR allow-refs
+# cp allow-ref.sample allow-ref
+# $EDITOR allow-ref
+# git add allow-ref
# git commit -am "implement my ci preferences"
# git push
#