fix: move entropy generation out to its own process (#693) #2694
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
# See: https://github.com/weavery/gitstamp-action | |
--- | |
name: Gitstamp | |
on: | |
push: | |
pull_request_target: | |
types: [opened] | |
branches: | |
- 'master' | |
- 'release/**' | |
- 'releases/**' | |
jobs: | |
gitstamp: | |
runs-on: ubuntu-latest | |
name: Timestamp commit with Gitstamp | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v2 | |
- name: Submit Gitstamp transaction | |
uses: weavery/gitstamp-action@v1 | |
with: | |
wallet-key: ${{ secrets.GITSTAMP_KEYFILE }} | |
commit-link: true |