Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Bump github.com/spf13/viper from 1.16.0 to 1.17.0 (#626) #119

Bump github.com/spf13/viper from 1.16.0 to 1.17.0 (#626)

Bump github.com/spf13/viper from 1.16.0 to 1.17.0 (#626) #119

Workflow file for this run

name: Update documentation
# NOTE: This action requires that a github secret exists in this repository
# named NEIC_SDA_ACCESS, containing a github token with the
# "Actions: Read and Write" permission on the neicnordic/neic-sda
# repository.
on:
push:
branches:
- master
jobs:
build:
name: Trigger documentation rebuild in neic-sda
runs-on: ubuntu-latest
steps:
- run: |
result=$(curl -X POST \
-H "Authorization: Bearer ${{secrets.NEIC_SDA_ACCESS}}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/neicnordic/neic-sda/actions/workflows/aggregate.yml/dispatches \
-d "{\"ref\": \"master\", \"inputs\":{\"repository\": \"$GITHUB_REPOSITORY\"}}")
[ -z "$result" ] && true || (echo "$result" && false)