Skip to content

كتاجر يمكنك إعادة تعيين كلمة المرور الخاصه بك في حال نسيانها قبل تسجيل الدخول الي النظام #31

كتاجر يمكنك إعادة تعيين كلمة المرور الخاصه بك في حال نسيانها قبل تسجيل الدخول الي النظام

كتاجر يمكنك إعادة تعيين كلمة المرور الخاصه بك في حال نسيانها قبل تسجيل الدخول الي النظام #31

Workflow file for this run

# This workflow will triage issues and apply a label based on the
# types: reopened or opened.
name: Label Issues
on:
issues:
types:
- reopened
- opened
- edited
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Label Issues
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const label = "Triage";
const issueNumber = context.issue.number;
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber,
labels: [label],
});