mirror of
https://github.com/status-im/BearSSL.git
synced 2026-08-31 00:31:06 +00:00
20 lines
418 B
YAML
20 lines
418 B
YAML
name: Sync upstream
|
|
on:
|
|
schedule:
|
|
- cron: '0 3 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Sync from upstream
|
|
run: |
|
|
git remote add upstream https://www.bearssl.org/git/BearSSL
|
|
git fetch upstream --tags
|
|
git push origin upstream/master:master --tags
|