* Bump actions/checkout from 2.3.4 to 2.3.5
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 2.3.5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](5a4ac9002d...1e204e9a92)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
* test
* removing test, works
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Grace Park <gracepark@github.com>
47 lines
1.5 KiB
YAML
47 lines
1.5 KiB
YAML
name: Crowdin Cleanup
|
|
|
|
# **What it does**: Homogenizes localized non-translatable frontmatter after every push by the octoglot bot to the translations branch.
|
|
# **Why we have it**: So Crowdin doesn't break frontmatter in production.
|
|
# **Who does it impact**: Docs engineering and international expansion.
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- translations
|
|
|
|
jobs:
|
|
homogenize_frontmatter:
|
|
name: Homogenize frontmatter
|
|
# Only run this after octoglot commits or when a Hubber is running this using the workflow dispatch button.
|
|
if: github.repository == 'github/docs-internal' && (github.event.pusher.name == 'octoglot' || github.event_name == 'workflow_dispatch')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@270253e841af726300e85d718a5f606959b2903c
|
|
with:
|
|
node-version: 16.8.x
|
|
cache: npm
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Homogenize frontmatter
|
|
run: script/i18n/homogenize-frontmatter.js
|
|
|
|
- name: Check in homogenized files
|
|
uses: EndBug/add-and-commit@2bdc0a61a03738a1d1bda24d566ad0dbe3083d87
|
|
with:
|
|
# The arguments for the `git add` command
|
|
add: 'translations'
|
|
|
|
# The message for the commit
|
|
message: 'Run script/i18n/homogenize-frontmatter.js'
|
|
|
|
env:
|
|
# Disable pre-commit hooks; they don't play nicely with add-and-commit
|
|
HUSKY: '0'
|