Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedKhattat committed Jan 10, 2025
0 parents commit 6dcc2b2
Show file tree
Hide file tree
Showing 4,280 changed files with 326,339 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Binary file added .DS_Store
Binary file not shown.
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# top-most EditorConfig file
root = true

[*.cs]
end_of_line = crlf
indent_style = space
indent_size = 4
68 changes: 68 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto

###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp

###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary

###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg binary
#*.png binary
#*.gif binary

###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain

###############################################################################
# Linguist tool configuration: exclude RTF from language stats
###############################################################################
*.rtf linguist-vendored
219 changes: 219 additions & 0 deletions .github/policies/resourceManagement.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,219 @@
id:
name: GitOps.PullRequestIssueManagement
description: GitOps.PullRequestIssueManagement primitive
owner:
resource: repository
disabled: false
where:
configuration:
resourceManagementConfiguration:
scheduledSearches:
- description: Close stale issues and pull requests
frequencies:
- hourly:
hour: 3
filters:
- isPullRequest
- isOpen
- hasLabel:
label: ':mailbox_with_no_mail: waiting-author-feedback'
- hasLabel:
label: ':zzz: no-recent-activity'
- noActivitySince:
days: 7
- isIssue
actions:
- closeIssue
- removeMilestone
- description: Add no recent activity label to issues and pull requests
frequencies:
- hourly:
hour: 3
filters:
- isPullRequest
- isOpen
- hasLabel:
label: ':mailbox_with_no_mail: waiting-author-feedback'
- noActivitySince:
days: 14
- isNotLabeledWith:
label: ':zzz: no-recent-activity'
- isIssue
actions:
- addLabel:
label: ':zzz: no-recent-activity'
- addReply:
reply: >-
This submission has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for **14 days**.
It will be closed if no further activity occurs **within 7 days of this comment**.
- description: Close stale issues
frequencies:
- hourly:
hour: 3
filters:
- isIssue
- isOpen
- hasLabel:
label: needs-author-feedback
- hasLabel:
label: no-recent-activity
- noActivitySince:
days: 3
actions:
- closeIssue
- description: Add no recent activity label to issues
frequencies:
- hourly:
hour: 3
filters:
- isIssue
- isOpen
- hasLabel:
label: needs-author-feedback
- noActivitySince:
days: 4
- isNotLabeledWith:
label: no-recent-activity
actions:
- addLabel:
label: no-recent-activity
- addReply:
reply: This issue has been automatically marked as stale because it has marked as requiring author feedback but has not had any activity for **4 days**. It will be closed if no further activity occurs **within 3 days of this comment**. Thank you for your contributions!
eventResponderTasks:
- if:
- payloadType: Pull_Request
- isAction:
action: Opened
then:
- addCodeFlowLink
description: Add a CodeFlow link to new pull requests
- if:
- payloadType: Pull_Request_Review
- isAction:
action: Submitted
- isReviewState:
reviewState: Changes_requested
then:
- addLabel:
label: ':mailbox_with_no_mail: waiting-author-feedback'
description: Add needs author feedback label to pull requests when changes are requested
- if:
- payloadType: Pull_Request
- isActivitySender:
issueAuthor: True
- not:
isAction:
action: Closed
- hasLabel:
label: ':mailbox_with_no_mail: waiting-author-feedback'
then:
- removeLabel:
label: ':mailbox_with_no_mail: waiting-author-feedback'
description: Remove needs author feedback label when the author responds to a pull request
- if:
- payloadType: Issue_Comment
- isActivitySender:
issueAuthor: True
- hasLabel:
label: ':mailbox_with_no_mail: waiting-author-feedback'
then:
- removeLabel:
label: ':mailbox_with_no_mail: waiting-author-feedback'
description: Remove needs author feedback label when the author comments on a pull request
- if:
- payloadType: Pull_Request_Review
- isActivitySender:
issueAuthor: True
- hasLabel:
label: ':mailbox_with_no_mail: waiting-author-feedback'
then:
- removeLabel:
label: ':mailbox_with_no_mail: waiting-author-feedback'
description: Remove needs author feedback label when the author responds to a pull request review comment
- if:
- payloadType: Pull_Request
- not:
isAction:
action: Closed
- hasLabel:
label: ':zzz: no-recent-activity'
then:
- removeLabel:
label: ':zzz: no-recent-activity'
description: Remove no recent activity label from pull requests
- if:
- payloadType: Issue_Comment
- hasLabel:
label: ':zzz: no-recent-activity'
then:
- removeLabel:
label: ':zzz: no-recent-activity'
description: Remove no recent activity label when a pull request is commented on
- if:
- payloadType: Pull_Request_Review
- hasLabel:
label: ':zzz: no-recent-activity'
then:
- removeLabel:
label: ':zzz: no-recent-activity'
description: Remove no recent activity label when a pull request is reviewed
- if:
- payloadType: Pull_Request
then:
- inPrLabel:
label: ':construction: work in progress'
description: In-PR label
- if:
- payloadType: Issue_Comment
- isActivitySender:
issueAuthor: True
- hasLabel:
label: ':mailbox_with_no_mail: waiting-author-feedback'
then:
- removeLabel:
label: ':mailbox_with_no_mail: waiting-author-feedback'
description: Remove needs author feedback label when the author comments on an issue
- if:
- payloadType: Issue_Comment
- hasLabel:
label: ':zzz: no-recent-activity'
then:
- removeLabel:
label: ':zzz: no-recent-activity'
description: Remove no recent activity label when an issue is commented on
- if:
- payloadType: Issues
- not:
isAction:
action: Closed
- hasLabel:
label: ':zzz: no-recent-activity'
then:
- removeLabel:
label: ':zzz: no-recent-activity'
description: Remove no recent activity label from issue
- if:
- payloadType: Issues
- not:
isAction:
action: Closed
- hasLabel:
label: no-recent-activity
then:
- removeLabel:
label: no-recent-activity
description: Remove no recent activity label from issues
- if:
- payloadType: Issue_Comment
- hasLabel:
label: no-recent-activity
- isAction:
action: Edited
then:
- removeLabel:
label: no-recent-activity
description: Remove no recent activity label when an issue is commented on
onFailure:
onSuccess:
Loading

0 comments on commit 6dcc2b2

Please sign in to comment.