Skip to content

Commit c1094bc

Browse files
authored
Merge pull request #2464 from yahonda/run-bug-report-templates-release80
Fix bug report templates for 8.0 stable branch
2 parents 1153e51 + b898c80 commit c1094bc

File tree

5 files changed

+4
-7
lines changed

5 files changed

+4
-7
lines changed

.github/workflows/ruby_head.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ jobs:
7777
run: |
7878
bundle exec rspec
7979
- name: Run bug report templates
80-
if: false
8180
run: |
8281
cd guides/bug_report_templates
8382
ruby active_record_gem.rb

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ jobs:
8383
run: |
8484
bundle exec rspec
8585
- name: Run bug report templates
86-
if: "false"
8786
run: |
8887
cd guides/bug_report_templates
8988
ruby active_record_gem.rb

.github/workflows/test_11g.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ jobs:
8787
run: |
8888
bundle exec rspec
8989
- name: Run bug report templates
90-
if: "false"
9190
run: |
9291
cd guides/bug_report_templates
9392
ruby active_record_gem.rb

guides/bug_report_templates/active_record_gem.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
99

10-
gem "activerecord", github: "rails/rails", branch: "main"
11-
gem "activerecord-oracle_enhanced-adapter", github: "rsim/oracle-enhanced", branch: "master"
10+
gem "activerecord", github: "rails/rails", branch: "8-0-stable"
11+
gem "activerecord-oracle_enhanced-adapter", github: "rsim/oracle-enhanced", branch: "release80"
1212
gem "minitest"
1313

1414
platforms :ruby do

guides/bug_report_templates/active_record_gem_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
99

10-
gem "activerecord", github: "rails/rails", branch: "main"
11-
gem "activerecord-oracle_enhanced-adapter", github: "rsim/oracle-enhanced", branch: "master"
10+
gem "activerecord", github: "rails/rails", branch: "8-0-stable"
11+
gem "activerecord-oracle_enhanced-adapter", github: "rsim/oracle-enhanced", branch: "release80"
1212
gem "rspec", require: "rspec/autorun"
1313

1414
platforms :ruby do

0 commit comments

Comments
 (0)