This repository was archived by the owner on May 13, 2026. It is now read-only.
Fix formatting issues in migration.is-cool.dev.json #1067
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: Raw API | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "domains/*" | |
| - ".github/workflows/raw-api.yml" | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.ref }}-raw-api | |
| cancel-in-progress: true | |
| jobs: | |
| update: | |
| name: Update | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/checkout@v6 | |
| with: | |
| repository: open-domains/raw | |
| path: raw | |
| token: ${{ secrets.BOT }} | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: latest | |
| - name: Update Data | |
| run: node raw/scripts/update.js | |
| - name: Commit | |
| uses: cpina/github-action-push-to-another-repository@main | |
| with: | |
| source-directory: "raw" | |
| destination-github-username: open-domains | |
| destination-repository-name: raw | |
| user-email: open-domains@win11react.com | |
| user-name: OD-BOT | |
| commit-message: "Update Data via open-domains/register" | |
| env: | |
| API_TOKEN_GITHUB: ${{ secrets.BOT }} |