Sha256: 7e5625261eaa5b4388cef69981a4ac1d36286ba25c230af0330bb682f9bd5089
Contents?: true
Size: 922 Bytes
Versions: 13
Compression:
Stored size: 922 Bytes
Contents
name: PSL Update on: workflow_dispatch: schedule: - cron: '40 6 * * *' jobs: update: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: "3.1" bundler-cache: true - name: Update PSL run: bundle exec rake update-list - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: title: PSL auto-update commit-message: Updated list from source reviewers: weppos add-paths: | data/list.txt - name: Check Pull Request if: ${{ steps.cpr.outputs.pull-request-number }} run: | echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
Version data entries
13 entries across 13 versions & 4 rubygems