Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/deploy-to-app.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# App deployments are non-production deployments to mainnet. They are public, can be used as staging, but e.g. funds are real.
name: Deploy to app
permissions:
contents: read
on:
push:
branches:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docker-main.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: Populate docker cache
permissions:
contents: read
on:
push:
branches:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/reproducible.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ name: Reproducible Docker Builds
# Note: This makes builds slow but is more representative of the end user experience.
# - NOT DONE: Verify that these builds match our release artifacts. This would correspond to third
# party verifiers getting consistent hashes that differ from our release.
permissions:
contents: read
on:
push:
branches:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update-aggregator.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# A GitHub Actions workflow that regularly updates the aggregator SNS parsing code
# and creates a PR for any changes.
name: Update sns_aggregator candid bindings
permissions:
contents: read
on:
schedule:
# Check for updates on candid interface for the aggregator every monday at 3:30am.
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update-didc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# A GitHub Actions workflow that regularly checks for new `didc` releases
# and creates a PR on new versions.
name: didc Update
permissions:
contents: read
on:
schedule:
# check for new `didc` releases every tuesday at 7:30.
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update-ic-cargo-deps.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# A GitHub Actions workflow that regularly checks for new `ic` releases and updates the Cargo.toml dependencies.
name: Update IC Cargo Dependencies
permissions:
contents: read
on:
schedule:
# Check for new IC releases every Sunday at 7:30am UTC.
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update-next.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# A GitHub Actions workflow that can be used to trigger updates of npm package
# dependencies.
name: Update next npm package dependencies
permissions:
contents: read
on:
workflow_dispatch:
inputs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update-rust.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# A GitHub Actions workflow that regularly checks for new Rust toolchain release
# and creates a PR on new versions.
name: Update rust
permissions:
contents: read
on:
schedule:
# check for new rust versions weekly
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update-sns-aggregator-response.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# A GitHub Actions workflow that regularly fetches the production response
# of the SNS aggregator and updates the mock files for the ProdLaunchpad.spec test.
name: Update the SNS aggregator response for ProdLaunchpad.spec
permissions:
contents: read
on:
schedule:
- cron: "30 3 * * THU"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update-snsdemo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# A GitHub Actions workflow that regularly checks for new snsdemo commits
# and creates a PR on finding any.
name: Update snsdemo
permissions:
contents: read
on:
schedule:
# check for new snsdemo commits weekly
Expand Down
Loading