Skip to content
Closed
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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
version: 2
updates:
- package-ecosystem: "bundler"
schedule:
interval: "weekly"
directories:
- "/tasks/cf-deployment-release-notes-template"

- package-ecosystem: "gomod"
directory: "/"
schedule:
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Ruby

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
dir:
- "tasks/cf-deployment-release-notes-template"
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.2'
bundler-cache: true
- run: bundle exec rspec .
working-directory: ${{ matrix.dir }}
3 changes: 0 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,3 @@ PLATFORMS

DEPENDENCIES
rspec

BUNDLED WITH
2.0.1
3 changes: 0 additions & 3 deletions tasks/cf-deployment-release-notes-template/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,3 @@ DEPENDENCIES
hashdiff
rspec
webmock

BUNDLED WITH
2.0.1
Loading