Skip to content

GUARANTEED WAYS TO RECOVER STOLEN BITCOIN LOST TO INTERNET FRAUD/GO TO TRUST GEEKS HACK EXPERT #189

GUARANTEED WAYS TO RECOVER STOLEN BITCOIN LOST TO INTERNET FRAUD/GO TO TRUST GEEKS HACK EXPERT

GUARANTEED WAYS TO RECOVER STOLEN BITCOIN LOST TO INTERNET FRAUD/GO TO TRUST GEEKS HACK EXPERT #189

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.`);
}