WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Question: the application for aarch64 #544

Question: the application for aarch64

Question: the application for aarch64 #544

Workflow file for this run

name: Close Issues
on:
issues:
types: [opened]
permissions:
issues: write
jobs:
close_issue:
runs-on: ubuntu-latest
steps:
- name: Check issue body and close if necessary
uses: actions/[email protected]
with:
script: |
const issueBody = context.payload.issue.body || '';
const regex = /345567/;
if (!regex.test(issueBody)) {
await github.rest.issues.update({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
state: 'closed'
});
console.log(`Issue #${context.issue.number} closed because it did not match the regex.`);
} else {
console.log(`Issue #${context.issue.number} remains open because it matches the regex.`);
}