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

Staging > Main #638

Merged
merged 24 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
127d1b8
Update login-data-engineer-2024.md
debjudy Nov 13, 2024
1bd8ab1
Merge pull request #632 from GSA-TTS/debjudy-patch-2
debjudy Nov 13, 2024
a47d282
Merge branch 'staging' into hotfix/staging-sync
ximekilgsa Nov 13, 2024
6f3fc24
Merge pull request #637 from GSA-TTS/hotfix/staging-sync
ximekilgsa Nov 13, 2024
d4e02d4
Add main branch protection
wesley-dean-gsa Nov 13, 2024
9471781
Update .cspell.json
wesley-dean-gsa Nov 13, 2024
93033bd
Update login-data-engineer-2024.md
wesley-dean-gsa Nov 13, 2024
5d39b3c
Update TTS-Sr-Advisor-Technology.md
wesley-dean-gsa Nov 13, 2024
3f59a5c
Update USDC-fellow-supe-14.md
wesley-dean-gsa Nov 13, 2024
ca556b3
Update .cspell.json
wesley-dean-gsa Nov 13, 2024
654ca4e
Merge pull request #642 from GSA-TTS/cleanup-spelling
wesley-dean-gsa Nov 13, 2024
6d1365d
Merge branch 'staging' into update-cspell
wesley-dean-gsa Nov 13, 2024
19fa192
Merge pull request #641 from GSA-TTS/update-cspell
wesley-dean-gsa Nov 13, 2024
7e101f2
Update protect_main_branch.yml
wesley-dean-gsa Nov 13, 2024
0e5050d
Update and rename .markdownlint.yaml to .markdownlint.json
wesley-dean-gsa Nov 13, 2024
8204a10
Merge branch 'staging' into 639-add-protection-to-main-branch-to-only…
wesley-dean-gsa Nov 13, 2024
1c843c6
[MegaLinter] Apply linters fixes
wesley-dean-gsa Nov 13, 2024
5f47bca
Merge pull request #640 from GSA-TTS/639-add-protection-to-main-branc…
wesley-dean-gsa Nov 13, 2024
fbb8ca7
Merge branch 'staging' into wesley-dean-gsa-patch-2
ximekilgsa Nov 13, 2024
e2f0000
Merge pull request #643 from GSA-TTS/wesley-dean-gsa-patch-2
wesley-dean-gsa Nov 13, 2024
64cc46a
Update .cspell.json
wesley-dean-gsa Nov 13, 2024
7bbf5b8
Merge pull request #644 from GSA-TTS/wesley-dean-gsa-patch-2
ximekilgsa Nov 13, 2024
9c8da13
Update login-data-engineer-2024.md
wesley-dean-gsa Nov 13, 2024
62dc1f2
Merge pull request #645 from GSA-TTS/wesley-dean-gsa-patch-2
wesley-dean-gsa Nov 13, 2024
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
12 changes: 12 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,33 @@
"ignorePaths": ["node_modules/**", "styles.**"],
"words": [
"Allstar",
"APPSW",
"CAIO",
"CISA",
"CISO",
"DATAMGT",
"DEIA",
"FASC",
"FISMA",
"Grype",
"HSPD",
"INET",
"INFOSEC",
"ISSM",
"ISSO",
"Joomla",
"LUOTR",
"Nygard",
"OPM",
"PLCYPLN",
"SDLC",
"SYSANALYSIS",
"Snyk",
"USAJOBS",
"USDA",
"USGSATTS",
"USWDS",
"architecting",
"automations",
"browsersync",
"captioner",
Expand All @@ -34,12 +42,15 @@
"exfiltrate",
"frontmatter",
"hotfixes",
"inclusivity",
"jointts",
"neurodiversity",
"ohrm",
"outdir",
"payrange",
"pdate",
"refactorization",
"roadmapping",
"roadmaps",
"sidenav",
"signup",
Expand All @@ -54,6 +65,7 @@
"timeframe",
"toolkit",
"toolkits",
"touchpoints",
"transformative",
"usda",
"uswds",
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/protect_main_branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Main Branch Protection

# yamllint disable-line rule:truthy
on:
pull_request:
branches:
- main

permissions: read-all

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true

jobs:
protect-main-branch:
runs-on: ubuntu-latest
steps:
- name: Check branch
run: |
if [[ ${GITHUB_HEAD_REF} != staging ]] ; then
echo "Error: Pull requests to 'main' must come from 'staging'"
exit 1
fi
29 changes: 29 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"blanks-around-fences": false,
"blanks-around-headings": false,
"blanks-around-lists": false,
"code-fence-style": false,
"emphasis-style": false,
"heading-start-left": false,
"hr-style": false,
"list-indent": false,
"list-marker-space": false,
"no-blanks-blockquote": false,
"no-hard-tabs": false,
"no-missing-space-atx": false,
"no-missing-space-closed-atx": false,
"no-multiple-blanks": false,
"no-multiple-space-atx": false,
"no-multiple-space-blockquote": false,
"no-multiple-space-closed-atx": false,
"no-trailing-spaces": false,
"ol-prefix": false,
"strong-style": false,
"ul-indent": false,
"MD013": {
"line_length": 999,
"heading_line_length": 999,
"code_block_line_length": 999
},
"MD041": false
}
28 changes: 0 additions & 28 deletions .markdownlint.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion pages/jointts/positions/TTS-Sr-Advisor-Technology.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ external_url:
# To show the alert keyword association message, add the keywords separated by a semi-colon
# e.g. Product Management; Strategy/Consulting; and Marketing
status_alert: true
alert_keywords: "Executive Managament; Software Engineering; Cloud Architecture; Cloud Engineering; and Cybersecurity"
alert_keywords: "Executive Management; Software Engineering; Cloud Architecture; Cloud Engineering; and Cybersecurity"

# If this listing has been updated since it was published, put the updated date below in YYYY-MM-DD format.
updated:
Expand Down
2 changes: 1 addition & 1 deletion pages/jointts/positions/USDC-fellow-supe-14.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ info_sessions:
# Make sure to leave the | on the first line. Begin your text by returning to the next line and
# indenting once.
role_summary: |
The U.S. Digital Corps (USDC) is a new two-year fellowship for early-career technologists to launch impactful careers in public service and create a more effective, equitable government. USDC pairs early-career and highly-skilled, mission-driven software engineers, data scientists, product managers, designers, and cybersecurity specialists with top technology changemakers in the federal government to build human-centered solutions to some of our nation’s toughest challenges. Our Fellows are the engines on projects that create change in the areas of climate, healthcare, racial equity, immigration, economic recovery, and open innovation. The Digital Corps was launched in August 2021 by GSA in partnership with the White House, CISA, and OPM.
The U.S. Digital Corps (USDC) is a new two-year fellowship for early-career technologists to launch impactful careers in public service and create a more effective, equitable government. USDC pairs early-career and highly-skilled, mission-driven software engineers, data scientists, product managers, designers, and cybersecurity specialists with top technology change-makers in the federal government to build human-centered solutions to some of our nation’s toughest challenges. Our Fellows are the engines on projects that create change in the areas of climate, healthcare, racial equity, immigration, economic recovery, and open innovation. The Digital Corps was launched in August 2021 by GSA in partnership with the White House, CISA, and OPM.

# Make sure to leave the | on the first line. Begin your text by returning to the next line and
# indenting once.
Expand Down
6 changes: 3 additions & 3 deletions pages/jointts/positions/login-data-engineer-2024.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ updated:
# The basic information and details of the position
info_intro: Open to U.S. citizens or nationals (residents of American Samoa and Swains Island). Subject to background check.

supervisory_status: non-supervisory
supervisory_status: Non-Supervisory

usajobs_official_title: IT Specialist (APPSW/INFOSEC)

Expand Down Expand Up @@ -132,7 +132,7 @@ role_summary: |

This opportunity is located in the Technology Transformation Services (TTS) Solutions Division’s Login.gov team. The Login.gov team is a remote organization and is composed of experts across product development, software engineering, cybersecurity, and platform engineering.

As a Data Engineer at Login.gov, you will provide technical guidance and lead implementation on a cross-functional team building out new, secure data products in support of a diverse set of stakeholders on the Login.gov program, including delivery, security, anti-fraud, and compliance functions. You will work closely with other members of the delivery team, including product, UX, and other engineers to define, implement, and maintain data tooling and infrastructure such as data warehousing solutions, ETL pipelines, data quality tools, and dashboarding and reporting tools.
As a Data Engineer at Login.gov, you will provide technical guidance and lead implementation on a cross-functional team building out new, secure data products in support of a diverse set of stakeholders on the Login.gov program, including delivery, security, anti-fraud, and compliance functions. You will work closely with other members of the delivery team, including product, UX, and other engineers to define, implement, and maintain data tooling and infrastructure such as data warehousing solutions, ETL pipelines, data quality tools, and dashboard and reporting tools.

# Make sure to leave the | on the first line. Begin your text by returning to the next line and
# indenting once.
Expand All @@ -142,7 +142,7 @@ qualifications: |
# indenting once.
specialized_requirements: |
- Applying data engineering and information security principles, methods, standards, and practices to program operations.
- Utilizing various analytical and statistical software to prepare data for analysis and clean data to include from structured/semistructured/unstructured sources.
- Utilizing various analytical and statistical software to prepare data for analysis and clean data to include from structured/semi-structured/unstructured sources.
- Working with various stakeholders and clients to define and determine the appropriate data services or tools requirements for projects.
- Providing technical expertise on the restructuring and/or re-architecting of program data collection storage to assess potential threats, vulnerabilities, and risks.
- Using software and programming languages (such as R, Python, SQL) and other tools to conduct operational data engineering functions.
Expand Down
Loading