mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
396b849076
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
name: Sync lnproxy relays
|
|
|
|
on:
|
|
schedule:
|
|
# * is a special character in YAML so you have to quote this string
|
|
- cron: "0 12 * * 0" # Run every Sunday at noon
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Fetch and process lnproxy relay JSON file
|
|
run: |
|
|
curl https://raw.githubusercontent.com/lnproxy/lnproxy-webui2/main/assets/relays.json -o lnproxy_tmplist.json
|
|
node ./scripts/lnproxy-sync.js
|
|
git add ./frontend/static/lnproxies.json
|
|
|
|
- name: Remove tmp lnproxy json file
|
|
run: rm lnproxy_tmplist.json
|
|
|
|
- name: Get the date for use in subsequent steps
|
|
id: getdate
|
|
run: echo "current_date=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
|
|
|
|
- name: Submit pull request
|
|
uses: peter-evans/create-pull-request@v5
|
|
with:
|
|
commit-message: "Update LNProxy relay list on ${{ env.current_date }}"
|
|
committer: GitHub Action <action@github.com>
|
|
branch: "lnproxy-${{ env.current_date }}"
|
|
delete-branch: true
|
|
title: "[GitHub Action] Update LNProxy relay list ${{ env.current_date }}"
|