Sha256: fb4c5ee5b81fc235cd296dea6c3532d791505e00014e522911c722ce74f58e8a
Contents?: true
Size: 955 Bytes
Versions: 1
Compression:
Stored size: 955 Bytes
Contents
name: "RuboCop Challenge" on: schedule: - cron: '30 23 * * 2,3,4' # この設定の場合、火水木のAM8:30に自動でPRが作られます。 jobs: create-pr: name: Create Pull Request runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby 2.7 uses: ruby/setup-ruby@v1 with: ruby-version: 2.7.5 - name: Install bundler run: gem install bundler - name: Install gems run: bundle install --jobs 4 --retry 3 - name: Set git configuration run: git config remote.origin.url "git@github.com:payrollhero/webhook_system.git" # プロジェクトごとに変わる値です。 - name: Create RuboCop challenge pull request env: GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: bundle exec rubocop_challenger go --base-branch=master --email=rubocop-challenger@example.com --name="Rubocop Challenger"
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
webhook_system-2.4.0 | .github/workflows/rubocop-challenger.yml |