forked from unicode-org/cldr
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,203 changed files
with
1,304,498 additions
and
938,461 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# .github/workflows/auto-author-assign.yml | ||
name: Auto Author Assign | ||
|
||
on: | ||
pull_request_target: | ||
types: [ opened, reopened ] | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
assign-author: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: toshimaru/auto-author-assign@v2.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: CLDR Site | ||
|
||
permissions: | ||
deployments: write | ||
id-token: write | ||
pull-requests: write | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
# - "tools/scripts/tr-archive/**" | ||
- "docs/site/**" | ||
- '.github/workflows/site.yml' | ||
push: | ||
branches: | ||
- main | ||
# Only run if docs change. | ||
paths: | ||
# - "tools/scripts/tr-archive/**" | ||
- "docs/site/**" | ||
- '.github/workflows/site.yml' | ||
|
||
jobs: | ||
cloudflare: | ||
runs-on: ubuntu-latest | ||
environment: cloudflare | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: false | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.2 | ||
bundler-cache: true | ||
- name: Setup Jekyll | ||
run: 'gem install bundler jekyll kramdown-parser-gfm webrick' | ||
- name: Setup assets | ||
run: 'cd docs/site/assets && npm ci && npm run build' | ||
- name: Build cldr.pages.dev | ||
run: 'cd docs/site && jekyll build' | ||
- name: Pre-install Wrangler | ||
run: npm i -g wrangler@3.x | ||
# see https://github.com/cloudflare/wrangler-action/issues/286 | ||
- name: Deploy cldr.pages.dev | ||
id: deploy | ||
uses: cloudflare/wrangler-action@v3 | ||
with: | ||
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | ||
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | ||
command: pages deploy ./_site --project-name=cldr | ||
- name: Add deploy comment to PR | ||
uses: actions/github-script@v7 | ||
if: github.event_name == 'pull_request' | ||
with: | ||
script: | | ||
github.rest.issues.createComment({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: '✨ deployed to <${{ steps.deploy.outputs.deployment-url }}>' | ||
}) | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: ['Site Update'] | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
# All | ||
.project | ||
.classpath | ||
.idea | ||
|
||
# /tools/ | ||
/tools/dist | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.