scratch-l10n 3.18.14 → 3.18.15

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.
@@ -4,6 +4,11 @@ on:
4
4
  push: # Runs whenever a commit is pushed to the repository
5
5
  workflow_call: # Allows another workflow to call this one
6
6
  workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
7
+ workflow_run: # Allows you to run this workflow when another workflow is run
8
+ types: [completed]
9
+ workflows:
10
+ - "Daily TX Pull"
11
+ - "Daily Help Update"
7
12
 
8
13
  concurrency:
9
14
  group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
@@ -18,8 +23,6 @@ permissions:
18
23
  jobs:
19
24
  build-and-deploy:
20
25
  runs-on: ubuntu-latest
21
- env:
22
- TRIGGER_DEPLOY: ${{ startsWith(github.ref, 'refs/heads/master') }}
23
26
  steps:
24
27
  - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
25
28
 
@@ -20,9 +20,6 @@ jobs:
20
20
  daily-tx-pull:
21
21
  runs-on: ubuntu-latest
22
22
 
23
- outputs:
24
- MADE_CHANGES: ${{ steps.commit.outputs.MADE_CHANGES }}
25
-
26
23
  env:
27
24
  # Organization-wide secrets
28
25
  TX_TOKEN: ${{ secrets.TX_TOKEN }}
@@ -50,15 +47,8 @@ jobs:
50
47
  git config --global user.name $(git log --pretty=format:"%an" -n1)
51
48
  git add .
52
49
  if git diff --cached --exit-code --quiet; then
53
- echo "MADE_CHANGES=false" >> "$GITHUB_OUTPUT"
54
50
  echo "Nothing to commit."
55
51
  else
56
52
  git commit -m "fix: pull new editor translations from Transifex"
57
- echo "MADE_CHANGES=true" >> "$GITHUB_OUTPUT"
58
53
  git push
59
54
  fi
60
- call-ci-cd:
61
- needs: daily-tx-pull
62
- if: needs.daily-tx-pull.outputs.MADE_CHANGES == 'true'
63
- uses: ./.github/workflows/ci-cd.yml
64
- secrets: inherit
package/CHANGELOG.md CHANGED
@@ -3,6 +3,13 @@
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
+ ## [3.18.15](https://github.com/scratchfoundation/scratch-l10n/compare/v3.18.14...v3.18.15) (2024-02-24)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update dependency scratch-semantic-release-config to v1.0.14 ([8aeb0bd](https://github.com/scratchfoundation/scratch-l10n/commit/8aeb0bd867935ef47c856af24b6211a6ec79fdcd))
12
+
6
13
  ## [3.18.14](https://github.com/scratchfoundation/scratch-l10n/compare/v3.18.13...v3.18.14) (2024-02-22)
7
14
 
8
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scratch-l10n",
3
- "version": "3.18.14",
3
+ "version": "3.18.15",
4
4
  "description": "Localization for the Scratch 3.0 components",
5
5
  "main": "./dist/l10n.js",
6
6
  "browser": "./src/index.js",
@@ -43,7 +43,7 @@
43
43
  "author": "Massachusetts Institute of Technology",
44
44
  "license": "BSD-3-Clause",
45
45
  "bugs": {
46
- "url": "https://github.com/LLK/scratch-l10n/issues"
46
+ "url": "https://github.com/scratchfoundation/scratch-l10n/issues"
47
47
  },
48
48
  "homepage": "https://github.com/scratchfoundation/scratch-l10n#readme",
49
49
  "devDependencies": {
@@ -65,7 +65,7 @@
65
65
  "babel-plugin-react-intl": "3.5.1",
66
66
  "download": "8.0.0",
67
67
  "eslint": "8.56.0",
68
- "eslint-config-scratch": "9.0.6",
68
+ "eslint-config-scratch": "9.0.7",
69
69
  "eslint-plugin-import": "2.29.1",
70
70
  "eslint-plugin-react": "7.33.2",
71
71
  "format-message-cli": "6.2.4",
@@ -81,7 +81,7 @@
81
81
  "p-limit": "2.3.0",
82
82
  "p-queue": "3.2.0",
83
83
  "rimraf": "2.7.1",
84
- "scratch-semantic-release-config": "1.0.13",
84
+ "scratch-semantic-release-config": "1.0.14",
85
85
  "semantic-release": "19.0.5",
86
86
  "transifex": "1.6.6",
87
87
  "webpack": "4.47.0",