Vendor Domain List #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Vendor Domain List" | |
on: | |
schedule: | |
- cron: '0 0 1 * * ' | |
workflow_dispatch: {} | |
jobs: | |
vendor: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0 | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Vendor | |
run: script/vendor | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
commit-message: Vendor domain list | |
title: Vendor domain list | |
add-paths: config/* |