Skip to content

Commit 85ba0c2

Browse files
author
timkay@not.com
committed
First release of PySimpleGUI 5!
1 parent c46b1c1 commit 85ba0c2

619 files changed

Lines changed: 38285 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/close_prs.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Auto Close Pull Requests
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
9+
jobs:
10+
close-pr:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Check Out Repository
15+
uses: actions/checkout@v2
16+
17+
- name: Close Pull Request
18+
run: |
19+
gh pr close ${{ github.event.pull_request.number }} --comment "Hi there!
20+
Thank you for your interest in contributing to PySimpleGUI. However, we do not accept pull requests at this time.
21+
(Refer to CONTRIBUTING.md)
22+
23+
Please open an issue instead and we'll be happy to discuss it with you. :D"
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
27+
# - name: Error out
28+
# run:
29+
# exit 1
30+
# with this commented, when a pr is closed it has a checkmark. if you'd prefer it to have an X, uncomment the code above ^^^
31+

CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Contributing to PySimpleGUI
2+
3+
We are happy to receive issues describing bug reports and feature requests! If your bug report relates to a security vulnerability, please do not file a public issue, and please instead reach out to us at issues@PySimpleGUI.com.
4+
5+
We do not accept (and do not wish to receive) contributions of user-created or third-party code, including patches, pull requests, or code snippets incorporated into submitted issues. Please do not send us any such code! Bug reports and feature requests should not include any source code.
6+
7+
If you nonetheless submit any user-created or third-party code to us, (1) you assign to us all rights and title in or relating to the code; and (2) to the extent any such assignment is not fully effective, you hereby grant to us a royalty-free, perpetual, irrevocable, worldwide, unlimited, sublicensable, transferrable license under all intellectual property rights embodied therein or relating thereto, to exploit the code in any manner we choose, including to incorporate the code into PySimpleGUI and to redistribute it under any terms at our discretion.

0 commit comments

Comments
 (0)