Skip to content

Bump ch.qos.logback:logback-classic from 1.5.9 to 1.5.10 #1208

Bump ch.qos.logback:logback-classic from 1.5.9 to 1.5.10

Bump ch.qos.logback:logback-classic from 1.5.9 to 1.5.10 #1208

Workflow file for this run

name: Danger Review
on:
pull_request_target:
types:
- opened
- reopened
- assigned
- unassigned
- labeled
- unlabeled
- edited
- synchronize
jobs:
danger:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm ci
- name: Clone source for linting
run: |
git clone ${{ github.event.pull_request.head.repo.clone_url }} source-content
cd source-content
git checkout ${{ github.event.pull_request.head.sha }}
rm dangerfile.js
cd ..
cp dangerfile.js source-content/dangerfile.js
cp -r node_modules/ source-content/node_modules/
- name: Run Danger Review
run: npx danger ci
timeout-minutes: 15
working-directory: source-content
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}