Skip to content

daily-bundler

daily-bundler #2004

Workflow file for this run

---
name: daily-bundler
on:
schedule:
- cron: 0 0 * * *
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
daily_bundler:
name: Bundler (ruby-head)
runs-on: ubuntu-24.04
if: github.repository == 'rubygems/rubygems'
env:
RGV: ..
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Set up Ruby
uses: ruby/setup-ruby@2a7b30092b0caf9c046252510f9273b4875f3db9 # v1.254.0
with:
ruby-version: ruby-head
bundler: none
- name: Show Ruby version
run: ruby --version
- name: Prepare dependencies
run: |
sudo apt-get install graphviz -y
bin/rake dev:deps
- name: Run Test
run: |
bin/rake spec:all
- name: Get previous status
if: always()
run: echo "OLD_STATUS=$(curl -sS 'https://api.github.com/repos/rubygems/rubygems/actions/workflows/daily-bundler.yml/runs?event=schedule&branch=master' | jq '.workflow_runs | .[1].conclusion')" >> $GITHUB_ENV
- uses: 8398a7/action-slack@1750b5085f3ec60384090fb7c52965ef822e869e # v3.18.0
with:
status: ${{ job.status }}
fields: repo,message,commit,author,action,eventName,ref,workflow
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required
if: failure() && env.OLD_STATUS == '"success"'
timeout-minutes: 60