Skip to content

Commit b5bd5fa

Browse files
committedJun 20, 2024
Merge with upstream activemerchant master
2 parents b06262b + 5bd880f commit b5bd5fa

File tree

814 files changed

+164365
-34388
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

814 files changed

+164365
-34388
lines changed
 

‎.github/workflows/ruby-ci.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- '**'
7+
push:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
name: Ruby ${{ matrix.version }} ${{ matrix.gemfile }}
14+
runs-on: ubuntu-latest
15+
env:
16+
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
17+
strategy:
18+
matrix:
19+
version:
20+
- 3.1
21+
gemfile:
22+
- gemfiles/Gemfile.rails50
23+
- gemfiles/Gemfile.rails51
24+
- gemfiles/Gemfile.rails52
25+
- gemfiles/Gemfile.rails60
26+
- gemfiles/Gemfile.rails_master
27+
exclude:
28+
- version: 2.6
29+
gemfile: gemfiles/Gemfile.rails_master
30+
- version: 2.5
31+
gemfile: gemfiles/Gemfile.rails_master
32+
steps:
33+
- uses: actions/checkout@v2
34+
35+
- name: Set up Ruby ${{ matrix.version }}
36+
uses: ruby/setup-ruby@v1
37+
with:
38+
ruby-version: ${{ matrix.version }}
39+
bundler-cache: true
40+
41+
- name: Test
42+
run: bundle exec rake test
43+
- name: Linter
44+
run: bundle exec rubocop

‎.github/workflows/stale.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: 'Close stale issues and PRs'
2+
on:
3+
schedule:
4+
- cron: '30 1 * * *'
5+
6+
permissions:
7+
issues: write
8+
pull-requests: write
9+
10+
jobs:
11+
stale:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/stale@v8
15+
with:
16+
stale-issue-message: 'To provide a cleaner slate for the maintenance of the library, this PR/Issue is being labeled stale after 60 days without activity. It will be closed in 14 days unless you comment with an update regarding its applicability to the current build. Thank you!'
17+
stale-pr-message: 'To provide a cleaner slate for the maintenance of the library, this PR/Issue is being labeled stale after 60 days without activity. It will be closed in 14 days unless you comment with an update regarding its applicability to the current build. Thank you!'
18+
days-before-close: 14
19+
exempt-draft-pr: true

0 commit comments

Comments
 (0)