mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-06 05:02:58 +03:00
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: Update AAGUIDs
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 1" # Runs every Monday at midnight
|
|
workflow_dispatch: # Allows manual triggering of the workflow
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
update-aaguids:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Fetch JSON data
|
|
run: |
|
|
curl -o data.json https://raw.githubusercontent.com/pocket-id/passkey-aaguids/refs/heads/main/combined_aaguid.json
|
|
|
|
- name: Process JSON data
|
|
run: |
|
|
mkdir -p backend/resources
|
|
jq -c 'map_values(.name)' data.json > backend/resources/aaguids.json
|
|
rm data.json
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v7
|
|
with:
|
|
commit-message: "chore: update AAGUIDs"
|
|
title: "chore: update AAGUIDs"
|
|
body: |
|
|
This PR updates the AAGUIDs file with the latest data from the [passkey-aaguids](https://github.com/pocket-id/passkey-aaguids) repository.
|
|
branch: update-aaguids
|
|
base: main
|
|
delete-branch: true
|