-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (32 loc) · 968 Bytes
/
mozilla-ca-cert.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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.chives_ref }}"
repository: chives-network/chives-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@v4
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 }}"