Codebase list ruby-omniauth-facebook / 39910452-e923-408a-89c0-a728cd6c194a/upstream/9.0.0+git20220125.2.250bb67
Import upstream version 9.0.0+git20220125.2.250bb67 Debian Janitor 1 year, 4 months ago
3 changed file(s) with 0 addition(s) and 59 deletion(s). Raw diff Collapse all Expand all
+0
-27
.github/workflows/ci.yml less more
0 name: Ruby
1
2 on: [push, pull_request]
3
4 jobs:
5 test:
6 runs-on: ${{ matrix.os }}-latest
7 strategy:
8 fail-fast: false
9 matrix:
10 os:
11 - ubuntu
12 ruby:
13 - "2.5"
14 - "2.6"
15 - "2.7"
16 - "3.0"
17 - "3.1"
18 steps:
19 - uses: actions/checkout@v2
20 - name: Set up Ruby
21 uses: ruby/setup-ruby@v1
22 with:
23 ruby-version: ${{ matrix.ruby }}
24 bundler-cache: true # 'bundle install' and cache
25 - name: Run tests
26 run: bundle exec rake
+0
-23
.github/workflows/stale.yml less more
0 name: Mark stale issues and pull requests
1
2 on:
3 schedule:
4 - cron: "0 0 * * *"
5
6 jobs:
7 stale:
8
9 runs-on: ubuntu-latest
10
11 steps:
12 - uses: actions/stale@v1
13 with:
14 repo-token: ${{ secrets.GITHUB_TOKEN }}
15 stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
16 stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
17 stale-issue-label: 'no-issue-activity'
18 stale-pr-label: 'no-pr-activity'
19 days-before-stale: 30
20 days-before-close: 5
21 exempt-pr-label: 'pinned'
22 exempt-issue-label: 'pinned'
+0
-9
.gitignore less more
0 *.gem
1 .bundle
2 .rspec
3 /Gemfile.lock
4 pkg/*
5 .powenv
6 .powder
7 tmp
8 bin