scratch-gui 4.1.7 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/signature-assistant.yml +31 -0
- package/CHANGELOG.md +12 -0
- package/LICENSE +656 -7
- package/package.json +2 -2
- package/test-results/integration/results.txt +124 -124
- package/test-results/unit/unit-results.xml +204 -204
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
name: "Signature Assistant"
|
|
2
|
+
on:
|
|
3
|
+
issue_comment:
|
|
4
|
+
types: [created]
|
|
5
|
+
pull_request_target:
|
|
6
|
+
types: [opened,closed,synchronize]
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
actions: write
|
|
10
|
+
contents: read
|
|
11
|
+
pull-requests: write
|
|
12
|
+
statuses: write
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
CLA-Assistant:
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
steps:
|
|
18
|
+
- name: "CLA Assistant"
|
|
19
|
+
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
|
|
20
|
+
uses: contributor-assistant/github-action@ca4a40a7d1004f18d9960b404b97e5f30a505a08 # v2.6.1
|
|
21
|
+
env:
|
|
22
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
23
|
+
# the below token should have repo scope and must be manually added by you in the repository's secrets
|
|
24
|
+
PERSONAL_ACCESS_TOKEN: ${{ secrets.GHA_AGREEMENTS_PAT }}
|
|
25
|
+
with:
|
|
26
|
+
remote-organization-name: 'scratchfoundation'
|
|
27
|
+
remote-repository-name: 'scratch-agreements'
|
|
28
|
+
path-to-signatures: 'signatures/version1/cla.json'
|
|
29
|
+
path-to-document: 'https://github.com/scratchfoundation/scratch-agreements/blob/main/CLA.md'
|
|
30
|
+
branch: 'main'
|
|
31
|
+
allowlist: semantic-release-bot,*[bot]
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [5.0.0](https://github.com/scratchfoundation/scratch-gui/compare/v4.1.7...v5.0.0) (2024-11-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* chore!: set license to AGPL-3.0-only ([3de24da](https://github.com/scratchfoundation/scratch-gui/commit/3de24da0f9e46307903a74695a6183d4a6035d9c))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
* This project is now licensed under the AGPL version 3.0
|
|
15
|
+
|
|
16
|
+
See https://www.scratchfoundation.org/open-source-license
|
|
17
|
+
|
|
6
18
|
## [4.1.7](https://github.com/scratchfoundation/scratch-gui/compare/v4.1.6...v4.1.7) (2024-11-23)
|
|
7
19
|
|
|
8
20
|
|