diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /.github | |
parent | Initial commit. (diff) | |
download | libreoffice-cb75148ebd0135178ff46f89a30139c44f8d2040.tar.xz libreoffice-cb75148ebd0135178ff46f89a30139c44f8d2040.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/FUNDING.yml | 1 | ||||
-rw-r--r-- | .github/workflows/lockdown.yml | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 000000000..df0fa03d0 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +custom: https://www.libreoffice.org/donate/ diff --git a/.github/workflows/lockdown.yml b/.github/workflows/lockdown.yml new file mode 100644 index 000000000..faf56b455 --- /dev/null +++ b/.github/workflows/lockdown.yml @@ -0,0 +1,26 @@ +# Configuration for Repo Lockdown - https://github.com/dessant/repo-lockdown +# LibreOffice project uses gerrit as its patch management & review system +name: Repo Lockdown + +on: + issues: + types: opened + pull_request_target: + types: opened + +jobs: + point-to-upstream: + runs-on: ubuntu-latest + steps: + - uses: dessant/repo-lockdown@v2.2.0 + with: + issue-comment: > + Thank you for your report. We use GitHub as a read-only mirror, so please submit your report into our own bug tracker: https://wiki.documentfoundation.org/QA/BugReport + skip-closed-issue-comment: true + close-issue: true + lock-issue: false + pr-comment: > + Thank you for your contribution. We use GitHub as a read-only mirror, so please submit your patch into our own code review system: https://wiki.documentfoundation.org/Development/GetInvolved + skip-closed-pr-comment: true + close-pr: true + lock-pr: false |