philimon-reset is writing L10N mapping splits #6
This file contains hidden or 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
--- | |
name: L10N output mapping splits | |
run-name: ${{ github.actor }} is writing L10N mapping splits | |
on: | |
schedule: | |
- cron: "0 0 * * 1" | |
permissions: | |
contents: "write" | |
jobs: | |
Select-Channels: | |
runs-on: ubuntu-latest | |
outputs: | |
channels: ${{ steps.splits.outputs.channels }} | |
steps: | |
- name: Create app token | |
uses: actions/create-github-app-token@v1 | |
id: app-token | |
with: | |
app-id: ${{ secrets.BOT_CLIENT_ID }} | |
private-key: ${{ secrets.BOT_PRIVATE_KEY }} | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
- name: Select test channels | |
id: splits | |
run: | | |
python3 choose_l10n_beta_split.py |