Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create ultimate-workflow.yml #88

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
213 changes: 213 additions & 0 deletions .github/workflows/ultimate-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,213 @@
name: Ultimate Repository Automation


on:
issues:
types: [opened]
pull_request:
types: [opened]
issue_comment:
types: [created]
pull_request_target:
types: [opened, synchronize]


jobs:
greet-and-process:
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout code
uses: actions/checkout@v2


- name: Greet new contributor
if: github.event_name == 'pull_request' || github.event_name == 'issues'
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const { owner, repo } = context.repo;
const creator = context.payload.sender.login;

const query = `query($owner:String!, $repo:String!, $creator:String!) {
repository(owner:$owner, name:$repo) {
issues(first:1, filterBy: {createdBy: $creator}) {
totalCount
}
pullRequests(first:1, states: OPEN) {
nodes {
author {
login
}
}
}
}
}`;

const result = await github.graphql(query, { owner, repo, creator });

const issuesTotalCount = result.repository.issues.totalCount;
const prTotalCount = result.repository.pullRequests.nodes.filter(pr => pr.author.login === creator).length;

const isNewContributor = issuesTotalCount + prTotalCount === 1;

if (isNewContributor) {
const message = `Welcome @${creator}! 🎉 Thank you for your first contribution to this project. We're excited to have you on board!`;

if (context.eventName === 'pull_request') {
github.rest.issues.createComment({
owner,
repo,
issue_number: context.payload.pull_request.number,
body: message
});
} else {
github.rest.issues.createComment({
owner,
repo,
issue_number: context.payload.issue.number,
body: message
});
}
}

- name: Auto-assign issue
if: github.event_name == 'issues' && github.event.action == 'opened'
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const issue = context.payload.issue;
const labels = issue.labels.map(label => label.name);

let assignee = '';
if (labels.includes('bug')) {
assignee = 'bug-fixer-username';
} else if (labels.includes('enhancement')) {
assignee = 'feature-developer-username';
} else {
assignee = 'default-assignee-username';
}

github.rest.issues.addAssignees({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue.number,
assignees: [assignee]
});

collect-stats:
runs-on: ubuntu-latest
outputs:
comment: ${{ steps.set-comment.outputs.comment }}
permissions:
pull-requests: write
issues: write
steps:
- name: Collect PR stats
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
try {
const { owner, repo } = context.repo;
const creator = context.payload.pull_request.user.login;

const query = `query($owner:String!, $repo:String!) {
repository(owner:$owner, name:$repo) {
pullRequests(first:100, states:MERGED, orderBy:{field:CREATED_AT, direction:DESC}) {
totalCount
nodes {
author {
login
}
additions
deletions
}
}
}
}`;

const result = await github.graphql(query, { owner, repo });
const prs = result.repository.pullRequests.nodes.filter(pr => pr.author.login === creator);
const totalPRs = prs.length;
const recentPRs = prs.slice(0, 10);
const totalAdditions = recentPRs.reduce((sum, pr) => sum + pr.additions, 0);
const totalDeletions = recentPRs.reduce((sum, pr) => sum + pr.deletions, 0);

const message = `
📊 Contributor Stats for @${creator}:

Total PRs Merged: ${totalPRs}
Recent Contributions (last 10 PRs):
- Lines Added: ${totalAdditions}
- Lines Deleted: ${totalDeletions}

Keep up the great work! 🚀
`;

await github.rest.issues.createComment({
owner,
repo,
issue_number: context.payload.pull_request.number,
body: message
});
} catch (error) {
console.log('Error:', error);
throw error; // Re-throw error after logging it
}



post-comment:
runs-on: ubuntu-latest
# needs: collect-stats
permissions:
issues: write # To allow posting comments
steps:
- name: Label based on file changes
if: github.event_name == 'pull_request' && github.event.action == 'opened'
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const { owner, repo } = context.repo;
const prNumber = context.payload.pull_request.number;

const filesChanged = await github.rest.pulls.listFiles({
owner,
repo,
pull_number: prNumber
});

const labels = new Set();

filesChanged.data.forEach(file => {
if (file.filename.endsWith('.js')) labels.add('javascript');
if (file.filename.endsWith('.py')) labels.add('python');
if (file.filename.endsWith('.css')) labels.add('css');
if (file.filename.includes('test')) labels.add('test');
if (file.filename.includes('docs')) labels.add('documentation');
});

if (labels.size > 0) {
github.rest.issues.addLabels({
owner,
repo,
issue_number: prNumber,
labels: Array.from(labels)
});
}


- name: Check for stale issues and PRs
uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
days-before-stale: 60
days-before-close: 7
Loading