Skip to content
This repository was archived by the owner on Mar 30, 2025. It is now read-only.

Commit 0f71d71

Browse files
author
staticdev
committed
General updates
1 parent 4936e45 commit 0f71d71

File tree

5 files changed

+94
-15
lines changed

5 files changed

+94
-15
lines changed

.github/labels.yml

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
# Labels names are important as they are used by Release Drafter to decide
3+
# regarding where to record them in changelog or if to skip them.
4+
#
5+
# The repository labels will be automatically configured using this file and
6+
# the GitHub Action https://github.com/marketplace/actions/github-labeler.
7+
- name: breaking
8+
description: Breaking Changes
9+
color: bfd4f2
10+
- name: bug
11+
description: Something isn't working
12+
color: d73a4a
13+
- name: build
14+
description: Build System and Dependencies
15+
color: bfdadc
16+
- name: ci
17+
description: Continuous Integration
18+
color: 4a97d6
19+
- name: dependencies
20+
description: Pull requests that update a dependency file
21+
color: 0366d6
22+
- name: documentation
23+
description: Improvements or additions to documentation
24+
color: 0075ca
25+
- name: duplicate
26+
description: This issue or pull request already exists
27+
color: cfd3d7
28+
- name: enhancement
29+
description: New feature or request
30+
color: a2eeef
31+
- name: github_actions
32+
description: Pull requests that update Github_actions code
33+
color: "000000"
34+
- name: good first issue
35+
description: Good for newcomers
36+
color: 7057ff
37+
- name: help wanted
38+
description: Extra attention is needed
39+
color: 008672
40+
- name: invalid
41+
description: This doesn't seem right
42+
color: e4e669
43+
- name: performance
44+
description: Performance
45+
color: "016175"
46+
- name: python
47+
description: Pull requests that update Python code
48+
color: 2b67c6
49+
- name: question
50+
description: Further information is requested
51+
color: d876e3
52+
- name: refactoring
53+
description: Refactoring
54+
color: ef67c4
55+
- name: removal
56+
description: Removals and Deprecations
57+
color: 9ae7ea
58+
- name: style
59+
description: Style
60+
color: c120e5
61+
- name: testing
62+
description: Testing
63+
color: b1fc6f
64+
- name: wontfix
65+
description: This will not be worked on
66+
color: ffffff

.github/workflows/labeler.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Labeler
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
9+
jobs:
10+
labeler:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Check out the repository
14+
uses: actions/checkout@v2.3.3
15+
16+
- name: Run Labeler
17+
uses: crazy-max/ghaction-github-labeler@v3.1.1
18+
with:
19+
skip-delete: true

meta/main.yml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,6 @@ galaxy_info:
1111
min_ansible_version: 2.9
1212

1313
platforms:
14-
- name: EL
15-
versions:
16-
- 7
17-
- 8
18-
- name: Fedora
19-
versions:
20-
- 33
2114
- name: Debian
2215
versions:
2316
- stretch
@@ -43,9 +36,9 @@ galaxy_info:
4336
dependencies:
4437
- name: avanov.pyenv
4538
version: 1.1.0
46-
- name: oefenweb.pycharm
47-
version: v5.0.7
48-
when: "{{ install_pycharm }}"
49-
- name: gantsign.visual-studio-code
50-
version: 6.6.0
51-
when: "{{ install_vscode }}"
39+
# - name: oefenweb.pycharm
40+
# version: v5.0.7
41+
# when: "{{ install_pycharm }}"
42+
# - name: gantsign.visual-studio-code
43+
# version: 6.6.0
44+
# when: "{{ install_vscode }}"

requirements.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
roles:
3-
- name: avanov.pyenv
4-
version: 1.1.0
3+
- name: staticdev.ansible_galaxy_pyenv
4+
version: 1.1.1
55
- name: oefenweb.pycharm
66
version: v5.0.7
77
when: "{{ install_pycharm }}"

tasks/pycharm.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
- name: Install pycharm
33
include_role:
44
name: oefenweb.pycharm
5+
become: true

0 commit comments

Comments
 (0)