Update Mozilla CA sub module #926
This file contains 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: "Update Mozilla CA sub module" | |
on: | |
workflow_dispatch: | |
branches: | |
- $default-branch | |
jobs: | |
update_ca_module: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: "${{ github.event.inputs.chia_ref }}" | |
repository: chia-network/chia-blockchain | |
submodules: recursive | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Set up commit signing | |
uses: Chia-Network/actions/commit-sign/gpg@main | |
with: | |
gpg_private_key: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_KEY }} | |
passphrase: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_PASSPHRASE }} | |
- name: "Add changes to new branch" | |
run: | | |
cd ./mozilla-ca | |
git pull origin main | |
- name: "Create Pull Request" | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
base: main | |
body: "Newest Mozilla CA cert" | |
branch: mozilla-ca-updates | |
commit-message: "adding ca updates" | |
delete-branch: true | |
reviewers: "wjblanke,emlowe" | |
assignees: "wallentx" | |
title: "CA Cert updates" | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
committer: "ChiaAutomation <automation@chia.net>" | |
author: "ChiaAutomation <automation@chia.net>" |