aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-08-02 11:53:35 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-08-02 11:53:35 +0300
commit1a9a0bac3dbf18da6546a1ca82078adf78897833 (patch)
tree62f81b725dc8863b701eea0453ba6b348b06b4fb /.github
parentv2.1.1 (diff)
downloadcgitize-1a9a0bac3dbf18da6546a1ca82078adf78897833.tar.gz
cgitize-1a9a0bac3dbf18da6546a1ca82078adf78897833.zip
workflows/ci: don't pull private Bitbucket repositories
They are private lmao.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1d9a236..3b95f9f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -36,8 +36,10 @@ jobs:
env:
# API request rate limit is easily exceeded otherwise:
CGITIZE_GITHUB_ACCESS_TOKEN: '${{ secrets.CGITIZE_GITHUB_ACCESS_TOKEN }}'
- CGITIZE_BITBUCKET_USERNAME: egor-tensin
- CGITIZE_BITBUCKET_APP_PASSWORD: '${{ secrets.CGITIZE_BITBUCKET_APP_PASSWORD }}'
+ # Consider creating a separate user (without my private repositories)
+ # for testing Bitbucket).
+ #CGITIZE_BITBUCKET_USERNAME: egor-tensin
+ #CGITIZE_BITBUCKET_APP_PASSWORD: '${{ secrets.CGITIZE_BITBUCKET_APP_PASSWORD }}'
steps:
- name: Checkout
uses: actions/checkout@v2