mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-14 11:57:44 +00:00
Remove CI check for sign off (#16776)
Since we don't require one anymore.
This commit is contained in:
parent
13e3740f70
commit
8189942a1f
3 changed files with 2 additions and 7 deletions
1
.github/PULL_REQUEST_TEMPLATE.md
vendored
1
.github/PULL_REQUEST_TEMPLATE.md
vendored
|
@ -9,6 +9,5 @@
|
||||||
- End with either a period (.) or an exclamation mark (!).
|
- End with either a period (.) or an exclamation mark (!).
|
||||||
- Start with a capital letter.
|
- Start with a capital letter.
|
||||||
- Feel free to credit yourself, by adding a sentence "Contributed by @github_username." or "Contributed by [Your Name]." to the end of the entry.
|
- Feel free to credit yourself, by adding a sentence "Contributed by @github_username." or "Contributed by [Your Name]." to the end of the entry.
|
||||||
* [ ] Pull request includes a [sign off](https://element-hq.github.io/synapse/latest/development/contributing_guide.html#sign-off)
|
|
||||||
* [ ] [Code style](https://element-hq.github.io/synapse/latest/code_style.html) is correct
|
* [ ] [Code style](https://element-hq.github.io/synapse/latest/code_style.html) is correct
|
||||||
(run the [linters](https://element-hq.github.io/synapse/latest/development/contributing_guide.html#run-the-linters))
|
(run the [linters](https://element-hq.github.io/synapse/latest/development/contributing_guide.html#run-the-linters))
|
||||||
|
|
7
.github/workflows/tests.yml
vendored
7
.github/workflows/tests.yml
vendored
|
@ -12,10 +12,6 @@ concurrency:
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check-signoff:
|
|
||||||
if: "github.event_name == 'pull_request'"
|
|
||||||
uses: "matrix-org/backend-meta/.github/workflows/sign-off.yml@v2"
|
|
||||||
|
|
||||||
# Job to detect what has changed so we don't run e.g. Rust checks on PRs that
|
# Job to detect what has changed so we don't run e.g. Rust checks on PRs that
|
||||||
# don't modify Rust code.
|
# don't modify Rust code.
|
||||||
changes:
|
changes:
|
||||||
|
@ -706,7 +702,7 @@ jobs:
|
||||||
needs: ${{ toJSON(needs) }}
|
needs: ${{ toJSON(needs) }}
|
||||||
|
|
||||||
# Various bits are skipped if there was no applicable changes.
|
# Various bits are skipped if there was no applicable changes.
|
||||||
# The newsfile and signoff lint may be skipped on non PR builds.
|
# The newsfile lint may be skipped on non PR builds.
|
||||||
skippable: |
|
skippable: |
|
||||||
trial
|
trial
|
||||||
trial-olddeps
|
trial-olddeps
|
||||||
|
@ -714,7 +710,6 @@ jobs:
|
||||||
portdb
|
portdb
|
||||||
export-data
|
export-data
|
||||||
complement
|
complement
|
||||||
check-signoff
|
|
||||||
lint-newsfile
|
lint-newsfile
|
||||||
cargo-test
|
cargo-test
|
||||||
cargo-bench
|
cargo-bench
|
||||||
|
|
1
changelog.d/16776.misc
Normal file
1
changelog.d/16776.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Remove CI check for sign off as we require an CLA signature instead.
|
Loading…
Reference in a new issue