mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-08-24 10:05:29 -05:00
* Bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update actions in templates too Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gene Hoffman <hoffmang@hoffmang.com>
33 lines
930 B
YAML
33 lines
930 B
YAML
name: "Update Mozilla CA sub module"
|
|
on:
|
|
workflow_dispatch:
|
|
branches:
|
|
- $default-branch
|
|
|
|
jobs:
|
|
update_ca_module:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
ref: "${{ github.event.inputs.chia_ref }}"
|
|
repository: chia-network/chia-blockchain
|
|
submodules: recursive
|
|
token: "${{ secrets.GITHUB_TOKEN }}"
|
|
- name: "Add changes to new branch"
|
|
run: |
|
|
cd ./mozilla-ca
|
|
git pull origin main
|
|
- name: "Create Pull Request"
|
|
uses: peter-evans/create-pull-request@v3
|
|
with:
|
|
base: main
|
|
body: "Newest Mozilla CA cert"
|
|
branch: mozilla-ca-updates
|
|
commit-message: "adding ca updates"
|
|
delete-branch: true
|
|
reviewers: "wjblanke,emlowe"
|
|
title: "CA Cert updates"
|
|
token: "${{ secrets.GITHUB_TOKEN }}"
|