Skip to content

Commit

Permalink
Merge branch 'release/7.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
JackMorganNZ committed Aug 23, 2022
2 parents 5abe689 + d2c4c35 commit f8effaa
Show file tree
Hide file tree
Showing 1,154 changed files with 12,216 additions and 18,335 deletions.
12 changes: 8 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,23 @@ updates:
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
open-pull-requests-limit: 999
- package-ecosystem: "npm"
directory: "/csunplugged/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
open-pull-requests-limit: 999
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
open-pull-requests-limit: 999
ignore:
# Ignore updates to Django package until LTS version
- dependency-name: "django"
versions: ["4.0.X", "4.1.X", "5.0.X", "5.1.X", "6.0.X", "6.1.X", "7.0.X", "7.1.X"]
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
open-pull-requests-limit: 999
30 changes: 30 additions & 0 deletions .github/workflows/auto-merge-dependency-updates.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Auto-merge minor dependency updates

on: pull_request

permissions:
pull-requests: write
contents: write

jobs:
check-pull-request:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/[email protected]
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
run: gh pr review --body "Automatic approval for minor dependency update." --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Merge
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
18 changes: 9 additions & 9 deletions .github/workflows/crowdin-actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Upload or update source files to Crowdin
uses: crowdin/[email protected].6
uses: crowdin/[email protected].12
with:
upload_sources: true

- name: Download Chinese (simplified) translations
uses: crowdin/[email protected].6
uses: crowdin/[email protected].12
with:
upload_sources: false
download_translations: true
Expand All @@ -42,7 +42,7 @@ jobs:
config: crowdin.yaml

- name: Download French translations
uses: crowdin/[email protected].6
uses: crowdin/[email protected].12
with:
upload_sources: false
download_translations: true
Expand All @@ -60,7 +60,7 @@ jobs:
config: crowdin.yaml

- name: Download German translations
uses: crowdin/[email protected].6
uses: crowdin/[email protected].12
with:
upload_sources: false
download_translations: true
Expand All @@ -78,7 +78,7 @@ jobs:
config: crowdin.yaml

- name: Download Indonesian translations
uses: crowdin/[email protected].6
uses: crowdin/[email protected].12
with:
upload_sources: false
download_translations: true
Expand All @@ -96,7 +96,7 @@ jobs:
config: crowdin.yaml

- name: Download Italian translations
uses: crowdin/[email protected].6
uses: crowdin/[email protected].12
with:
upload_sources: false
download_translations: true
Expand All @@ -114,7 +114,7 @@ jobs:
config: crowdin.yaml

- name: Download Te Reo Māori translations
uses: crowdin/[email protected].6
uses: crowdin/[email protected].12
with:
upload_sources: false
download_translations: true
Expand All @@ -132,7 +132,7 @@ jobs:
config: crowdin.yaml

- name: Download Turkish translations
uses: crowdin/[email protected].6
uses: crowdin/[email protected].12
with:
upload_sources: false
download_translations: true
Expand Down
Loading

0 comments on commit f8effaa

Please sign in to comment.