File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for all configuration options:
4+ # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+ version : 2
7+ updates :
8+ - package-ecosystem : ' terraform' # See documentation for possible values
9+ directory : ' /' # Location of package manifests
10+ schedule :
11+ interval : ' daily'
Original file line number Diff line number Diff line change 1+ ### This workflow can be used to manually create new release versions from a tag push using e.g. VSCODE ###
2+ on:
3+ push:
4+ tags:
5+ - '*'
6+
7+ name: Release to terraform public registry
8+ jobs:
9+ Release:
10+ name: Release
11+ runs-on: ubuntu-latest
12+ steps:
13+ 14+ - uses: ncipollo/release-action@v1
15+ with:
16+ generateReleaseNotes: true
17+ name: 'v${{ github.ref_name }}'
18+ token: ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments