Skip to content

Commit

Permalink
Merge pull request #1 from breml/add-github-workflows
Browse files Browse the repository at this point in the history
Add github workflow
  • Loading branch information
breml committed Jan 13, 2021
2 parents 61fea67 + a5b5aca commit 753ca94
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Update Mozilla Included CA Certificate List

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: "0 0 * * 0"

jobs:
update:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Go
uses: actions/setup-go@v2

- name: Update Mozilla Included CA Certificate List
run: go generate .

- name: Commit changes
uses: EndBug/add-and-commit@v6
with:
author_name: Lucas Bremgartner
author_email: lucas@bremis.ch
message: 'Auto Update Mozilla Included CA Certificate List'
add: 'data.go'

0 comments on commit 753ca94

Please sign in to comment.