Skip to content

Commit cf0a5c0

Browse files
authored
Initial commit
0 parents  commit cf0a5c0

File tree

4 files changed

+109
-0
lines changed

4 files changed

+109
-0
lines changed

.github/workflows/blank.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: CI
4+
5+
# Controls when the workflow will run
6+
on:
7+
# Triggers the workflow on push or pull request events but only for the "main" branch
8+
push:
9+
branches: [ "main" ]
10+
pull_request:
11+
branches: [ "main" ]
12+
13+
# Allows you to run this workflow manually from the Actions tab
14+
workflow_dispatch:
15+
16+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17+
jobs:
18+
# This workflow contains a single job called "build"
19+
build:
20+
# The type of runner that the job will run on
21+
runs-on: ubuntu-latest
22+
23+
# Steps represent a sequence of tasks that will be executed as part of the job
24+
steps:
25+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26+
- uses: actions/checkout@v4
27+
28+
# Runs a single command using the runners shell
29+
- name: Run a one-line script
30+
run: echo Hello, world!
31+
32+
# Runs a set of commands using the runners shell
33+
- name: Run a multi-line script
34+
run: |
35+
echo Add other actions to build,
36+
echo test, and deploy your project.

.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Wordpress - ignore core, configuration, examples, uploads and logs.
2+
# https://github.com/github/gitignore/blob/main/WordPress.gitignore
3+
4+
# Core
5+
#
6+
# Note: if you want to stage/commit WP core files
7+
# you can delete this whole section/until Configuration.
8+
/wp-admin/
9+
/wp-content/index.php
10+
/wp-content/languages
11+
/wp-content/plugins/index.php
12+
/wp-content/themes/index.php
13+
/wp-includes/
14+
/index.php
15+
/license.txt
16+
/readme.html
17+
/wp-*.php
18+
/xmlrpc.php
19+
20+
# Configuration
21+
wp-config.php
22+
23+
# Example themes
24+
/wp-content/themes/twenty*/
25+
26+
# Example plugin
27+
/wp-content/plugins/hello.php
28+
29+
# Uploads
30+
/wp-content/uploads/
31+
32+
# Log files
33+
*.log
34+
35+
# htaccess
36+
/.htaccess
37+
38+
# All plugins
39+
#
40+
# Note: If you wish to whitelist plugins,
41+
# uncomment the next line
42+
#/wp-content/plugins
43+
44+
# All themes
45+
#
46+
# Note: If you wish to whitelist themes,
47+
# uncomment the next line
48+
#/wp-content/themes

LICENSE

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
BSD 2-Clause License
2+
3+
Copyright (c) 2026, asunciona885
4+
5+
Redistribution and use in source and binary forms, with or without
6+
modification, are permitted provided that the following conditions are met:
7+
8+
1. Redistributions of source code must retain the above copyright notice, this
9+
list of conditions and the following disclaimer.
10+
11+
2. Redistributions in binary form must reproduce the above copyright notice,
12+
this list of conditions and the following disclaimer in the documentation
13+
and/or other materials provided with the distribution.
14+
15+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
19+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
22+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# super-octo-umbrella

0 commit comments

Comments
 (0)