-
Notifications
You must be signed in to change notification settings - Fork 0
chore: instalar workflows gh-aw de ambito organizacional #1
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
Open
svg153
wants to merge
1
commit into
main
Choose a base branch
from
chore/install-org-gh-aw-workflows
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| .github/workflows/*.lock.yml linguist-generated=true merge=ours | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| { | ||
| "entries": { | ||
| "actions/github-script@v8": { | ||
| "repo": "actions/github-script", | ||
| "version": "v8", | ||
| "sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd" | ||
| }, | ||
| "github/gh-aw-actions/setup@v0.66.1": { | ||
| "repo": "github/gh-aw-actions/setup", | ||
| "version": "v0.66.1", | ||
| "sha": "73ae9ce231580f337133352d321d42b6bf54b6a9" | ||
| } | ||
| } | ||
| } |
1,094 changes: 1,094 additions & 0 deletions
1,094
.github/workflows/ospo-contributors-report.lock.yml
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,141 @@ | ||
| --- | ||
| name: 'OSPO Contributors Report' | ||
| description: 'Monthly contributor activity metrics across an organization''s repositories.' | ||
| labels: ['ospo', 'reporting', 'contributors'] | ||
| on: | ||
| schedule: | ||
| - cron: "3 2 1 * *" | ||
| workflow_dispatch: | ||
| inputs: | ||
| organization: | ||
| description: "GitHub organization to analyze (e.g. github)" | ||
| required: false | ||
| type: string | ||
| repositories: | ||
| description: "Comma-separated list of repos to analyze (e.g. owner/repo1,owner/repo2)" | ||
| required: false | ||
| type: string | ||
| start_date: | ||
| description: "Start date for the report period (YYYY-MM-DD)" | ||
| required: false | ||
| type: string | ||
| end_date: | ||
| description: "End date for the report period (YYYY-MM-DD)" | ||
| required: false | ||
| type: string | ||
| sponsor_info: | ||
| description: "Include GitHub Sponsors information for contributors" | ||
| required: false | ||
| type: boolean | ||
| default: false | ||
|
|
||
| permissions: | ||
| contents: read | ||
| issues: read | ||
| pull-requests: read | ||
|
|
||
| engine: copilot | ||
|
|
||
| tools: | ||
| github: | ||
| toolsets: | ||
| - repos | ||
| - issues | ||
| - pull_requests | ||
| - orgs | ||
| - users | ||
| bash: true | ||
|
|
||
| safe-outputs: | ||
| create-issue: | ||
| max: 1 | ||
| title-prefix: "[Contributors Report] " | ||
|
|
||
| timeout-minutes: 60 | ||
| source: github/awesome-copilot/workflows/ospo-contributors-report.md@0c3c5bbbfb2a7d57d36473a83fdbef1becc5053f | ||
| --- | ||
|
|
||
| # Contributors Report | ||
|
|
||
| Generate a contributors report for the specified organization or repositories. | ||
|
|
||
| ## Step 1: Validate Configuration | ||
|
|
||
| Check the workflow inputs. Either `organization` or `repositories` must be provided. | ||
|
|
||
| - If **both** are empty and this is a **scheduled run**, default to analyzing all public repositories in the organization that owns the current repository. Determine the org from the `GITHUB_REPOSITORY` environment variable (the part before the `/`). | ||
| - If **both** are empty and this is a **manual dispatch**, fail with a clear error message: "You must provide either an organization or a comma-separated list of repositories." | ||
| - If **both** are provided, prefer `repositories` and ignore `organization`. | ||
|
|
||
| ## Step 2: Determine Date Range | ||
|
|
||
| - If `start_date` and `end_date` are provided, use them. | ||
| - Otherwise, default to the **previous calendar month**. For example, if today is 2025-03-15, the range is 2025-02-01 to 2025-02-28. | ||
| - Use bash to compute the dates if needed. Store them as `START_DATE` and `END_DATE`. | ||
|
|
||
| ## Step 3: Enumerate Repositories | ||
|
|
||
| - If `repositories` input was provided, split the comma-separated string into a list. Each entry should be in `owner/repo` format. | ||
| - If `organization` input was provided (or defaulted from Step 1), list all **public, non-archived, non-fork** repositories in the organization using the GitHub API. Collect their `owner/repo` identifiers. | ||
|
|
||
| ## Step 4: Collect Contributors from Commit History | ||
|
|
||
| For each repository in scope: | ||
|
|
||
| 1. Use the GitHub API to list commits between `START_DATE` and `END_DATE` (use the `since` and `until` parameters on the commits endpoint). | ||
| 2. For each commit, extract the **author login** (from `author.login` on the commit object). | ||
| 3. **Exclude bot accounts**: skip any contributor whose username contains `[bot]` or whose `type` field is `"Bot"`. | ||
| 4. Track per-contributor: | ||
| - Total number of commits across all repos. | ||
| - The set of repos they contributed to. | ||
|
|
||
| Use bash to aggregate and deduplicate the contributor data across all repositories. | ||
|
|
||
| ## Step 5: Determine New vs Returning Contributors | ||
|
|
||
| For each contributor found in Step 4, check whether they have **any commits before `START_DATE`** in any of the in-scope repositories. | ||
|
|
||
| - If a contributor has **no commits before `START_DATE`**, mark them as a **New Contributor**. | ||
| - Otherwise, mark them as a **Returning Contributor**. | ||
|
|
||
| ## Step 6: Collect Sponsor Information (Optional) | ||
|
|
||
| If the `sponsor_info` input is `true`: | ||
|
|
||
| 1. For each contributor, check whether they have a GitHub Sponsors profile by querying the user's profile via the GitHub API. | ||
| 2. If the user has sponsorship enabled, record their sponsor URL as `https://github.com/sponsors/<username>`. | ||
| 3. If not, leave the sponsor field empty. | ||
|
|
||
| ## Step 7: Generate Markdown Report | ||
|
|
||
| Build a markdown report with the following structure: | ||
|
|
||
| ### Summary Table | ||
|
|
||
| | Metric | Value | | ||
| |---|---| | ||
| | Total Contributors | count | | ||
| | Total Contributions (Commits) | count | | ||
| | New Contributors | count | | ||
| | Returning Contributors | count | | ||
| | % New Contributors | percentage | | ||
|
|
||
| ### Contributors Detail Table | ||
|
|
||
| Sort contributors by commit count descending. | ||
|
|
||
| | # | Username | Contribution Count | New Contributor | Sponsor URL | Commits | | ||
| |---|---|---|---|---|---| | ||
| | 1 | @username | 42 | Yes | [Sponsor](url) | [View](commits-url) | | ||
|
|
||
| - The **Username** column should link to the contributor's GitHub profile. | ||
| - The **Sponsor URL** column should show "N/A" if `sponsor_info` is false or the user has no Sponsors page. | ||
| - The **Commits** column should link to a filtered commits view. | ||
|
|
||
| ## Step 8: Create Issue with Report | ||
|
|
||
| Create an issue in the **current repository** with: | ||
|
|
||
| - **Title:** `[Contributors Report] <ORG_OR_REPO_SCOPE> — START_DATE to END_DATE` | ||
| - **Body:** The full markdown report from Step 7. | ||
| - **Labels:** Add the label `contributors-report` if it exists; do not fail if it does not. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.gitattributesusesmerge=oursfor*.lock.yml, but Git doesn't ship anoursmerge driver by default (onlytext,binary,union). Without configuringmerge.ours.driverin repo/local git config, merges can error with an unknown merge driver. Consider either documenting the requiredgit config merge.ours.driver truesetup for contributors/CI, or switching to a built-in merge behavior (e.g., treat these files as binary and regenerate viagh aw compileafter merges).