Skip to content

chore: Bump lodash from 4.17.23 to 4.18.1 in the npm_and_yarn group across 1 directory #69

chore: Bump lodash from 4.17.23 to 4.18.1 in the npm_and_yarn group across 1 directory

chore: Bump lodash from 4.17.23 to 4.18.1 in the npm_and_yarn group across 1 directory #69

Workflow file for this run

name: auto-assignment
on:
issues:
types: [opened]
pull_request:
types: [opened]
permissions:
contents: read
issues: write
pull-requests: write
jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run auto-assignment script
uses: actions/github-script@v7
with:
script: |
const path = require('path');
const { pathToFileURL } = require('url');
const filePath = path.resolve('./scripts/auto-assignment.mjs');
const fileUrl = pathToFileURL(filePath).href;
const importedModule = await import(fileUrl);
await importedModule.default({ github, context });